Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #117

Merged
merged 2 commits into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@ jobs:

- name: Install uiua
run: |
<<<<<<< HEAD
gh release download "${VERSION}" --repo uiua-lang/uiua --pattern uiua-bin-x86_64-unknown-linux-gnu-no-audio.zip --output uiua.zip
=======
gh release download 0.14.0-dev.7 --repo uiua-lang/uiua --pattern uiua-bin-x86_64-unknown-linux-gnu-no-audio.zip --output uiua.zip
>>>>>>> 86f93aa (Add `killer-sudoku-helper` exercise)
unzip uiua.zip
echo "${PWD}" >> "${GITHUB_PATH}"
env:
VERSION: 0.14.0-dev.7
VERSION: 0.14.0-rc.1
GH_TOKEN: ${{ github.token }}

- name: Verify all exercises
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/etl/tests.ua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# single letter
Input ← map {"1"} {"A"}
Expected ← map "a" 1
Expected ← map "a" [1]
⍤⤙≍ Expected Transform Input

# single score with multiple letters
Expand Down