Add release workflow with bundle validation #142
Workflow file for this run
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
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| # this cancels workflows currently in progress if you start a new one | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # Do not add permissions here! Configure them at the job level! | |
| permissions: {} | |
| jobs: | |
| test-examples-ubuntu: | |
| runs-on: [ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: roc-lang/setup-roc@cbe782d6f165b89c87d99f50a59ac4f5f73b4427 | |
| with: | |
| version: nightly-new-compiler | |
| nightly-tag: nightly-2026-July-03-c562054 | |
| - run: roc version | |
| # expect for testing | |
| - run: sudo apt install -y expect | |
| - run: expect -v | |
| # Run all tests | |
| - run: ROC=roc ./ci/all_tests.sh |