1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
name: ci on: [push, pull_request] jobs: test: strategy: matrix: os: - ubuntu-latest - macos-latest - windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - run: cargo test --workspace