1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
name: Cargo Test on: workflow_call: jobs: test: strategy: matrix: os: ["macos-latest", "windows-latest"] runs-on: '${{ matrix.os }}' name: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v3 - name: Test run: cargo test --all