Fixed incorrect stubs, added panics for stub procs #17
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 creates an Odin environment and runs all tests for all exercises. | |
name: odin/Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Update packages | |
run: sudo apt update | |
- name: Install Clang | |
run: sudo apt -y install clang | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Setup Odin | |
uses: laytan/setup-odin@41f9612bfec760bbb68b05b5747f319afe7c48d8 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
llvm-version: 14 | |
- name: Verify all exercises | |
run: bin/verify-exercises |