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
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
# This job handles all testing
test-all:
test-compiler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -19,6 +19,14 @@ jobs:
- name: Compiler Tests
working-directory: ./compiler
run: cargo test

test-interpreter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
# ... (insert your cache step here) ...

- name: Interpreter Tests
working-directory: ./interpreter
run: cargo test
Expand Down
Loading