automate versioned releases (#15) #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Skill CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| tla-proof: | |
| name: TLA Proof Script Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Verify required tools | |
| run: | | |
| set -euo pipefail | |
| command -v bash | |
| command -v jq | |
| - name: Shell syntax checks | |
| run: | | |
| set -euo pipefail | |
| bash -n skills/tla-proof/scripts/tlaps_check.sh | |
| bash -n skills/tla-proof/scripts/tests/tlaps_check_test.sh | |
| - name: Run TLAPS runner regression tests | |
| run: | | |
| set -euo pipefail | |
| bash skills/tla-proof/scripts/tests/tlaps_check_test.sh |