Add allergies
exercise (#49)
#148
This file contains 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
# 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: | | |
gh release download 0.13.0 --repo uiua-lang/uiua --pattern uiua-bin-x86_64-unknown-linux-gnu-no-audio.zip --output uiua.zip | |
unzip uiua.zip | |
echo "${PWD}" >> "${GITHUB_PATH}" | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Verify all exercises | |
run: bin/verify-exercises |