From 702ed1ad2f85290c80653186bd9dc7f4d71d8a03 Mon Sep 17 00:00:00 2001 From: Matt Cuffaro Date: Mon, 25 May 2026 21:18:54 -0700 Subject: [PATCH] ENH: julia CI --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15dbf1b93..ec4971efa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,26 @@ env: CARGO_TERM_COLOR: always jobs: + julia_tests: + name: julia tests + runs-on: ubuntu-latest + strategy: + matrix: + toolchain: + - stable + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Setup Julia + uses: julia-actions/setup-julia@v2 + with: + version: '1' + + - name: Tests + run : | + julia --project=packages/algjulia-interop -e 'import Pkg; Pkg.test()' + catlog_tests: name: catlog tests runs-on: ubuntu-latest