From 53301e41e32ad930f512ff81fc37b4094fb757c9 Mon Sep 17 00:00:00 2001 From: Kendall Weihe Date: Mon, 29 Apr 2024 09:19:35 -0400 Subject: [PATCH] WIP ci.yml --- .github/workflows/ci.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31dbcc69..c18d3f53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,22 @@ jobs: run: just setup - name: Build run: just build + test: + strategy: + matrix: + os: [ ubuntu-latest, macos-latest, windows-latest ] + rust: [ stable, nightly ] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - name: Init Hermit + uses: cashapp/activate-hermit@v1 + with: + cache: true + - name: Setup + run: just setup + - name: Test + run: just test - # test: - # # ... # lint: # # ...