An asynchronous IO runtime
at main 20 lines 360 B view raw
1name: test 2 3on: 4 pull_request: 5 branches: ["main"] 6 workflow_dispatch: 7 push: 8 9jobs: 10 test-io: 11 strategy: 12 matrix: 13 os: [ubuntu-latest, macos-latest] 14 runs-on: ${{matrix.os}} 15 steps: 16 - uses: actions/checkout@v3 17 - uses: mlugg/setup-zig@v1 18 with: 19 version: 0.14.0 20 - run: zig build --summary all test