Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Add "capacity" setting to limit the number of concurrent sessions #2

Add "capacity" setting to limit the number of concurrent sessions

Add "capacity" setting to limit the number of concurrent sessions #2

Workflow file for this run

name: Workflowcheck
on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Read Go version
id: go_version
run: echo "go_version=$(cat .go-version)" >> $GITHUB_OUTPUT
- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v4
with:
go-version: ${{ steps.go_version.outputs.go_version }}
- name: Install workflowcheck
run: go install go.temporal.io/sdk/contrib/tools/workflowcheck@latest
- name: Run workflowcheck
run: workflowcheck ./...