diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f20f51..a7424c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,17 @@ on: branches: ['**'] jobs: + tests: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest] + timeout-minutes: 5 + steps: + - uses: actions/checkout@v4 + - run: cargo test --release + x86_64: runs-on: ubuntu-24.04 timeout-minutes: 10