Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,10 @@ jobs:
- name: do spell check with typos-cli 1.34.0
run: typos

- name: setup Roc
run: |
curl -s -OL https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-linux_x86_64-latest.tar.gz
# rename nightly tar
mv $(ls | grep "roc_nightly.*tar\.gz") roc_nightly.tar.gz
# decompress the tar
tar -xzf roc_nightly.tar.gz
rm roc_nightly.tar.gz
# simplify nightly folder name
mv roc_nightly* roc_nightly
cd roc_nightly
# make roc binary available
echo "$(pwd)" >> $GITHUB_PATH
- uses: roc-lang/setup-roc@39c354a6a838a0089eea9068a0414f49b62c5c08
with:
# Note: nightly hashes are not verified because they are updated regularly.
version: nightly

- run: roc version

Expand Down