-
-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (30 loc) · 984 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This workflow will verify the exercises in the repository.
#
# Requires scripts:
# - bin/verify-exercises
name: Test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
verify_exercises:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- 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
GH_TOKEN: ${{ github.token }}
- name: Verify all exercises
run: bin/verify-exercises