From b1bfa3d100bae4face7f8b63b8e0078fbe2491a9 Mon Sep 17 00:00:00 2001 From: pbaekgaard <92847415+pbaekgaard@users.noreply.github.com> Date: Fri, 13 Mar 2026 13:31:10 +0100 Subject: [PATCH] Refactor CI jobs for compiler and interpreter tests Renamed test job from 'test-all' to 'test-compiler' and added a new job for 'test-interpreter'. --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9f6a14..5660ea5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ env: jobs: # This job handles all testing - test-all: + test-compiler: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -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