Skip to content

Commit

Permalink
use TESTING for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-4 committed Nov 29, 2024
1 parent 6b46621 commit 6ff1123
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: get latest roc nightly
- id: try_fetching_testing_release
continue-on-error: true
run: |
curl -fOL https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-linux_x86_64-TESTING.tar.gz
- name: There are no TESTING releases, checking regular releases instead
if: steps.try_fetching_testing_release.outcome == 'failure'
run: |
curl -fOL https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-linux_x86_64-latest.tar.gz
Expand Down

0 comments on commit 6ff1123

Please sign in to comment.