this repo has no description
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add test runner ci

+19
+19
.github/workflows/tests.yml
··· 1 + name: test 2 + 3 + on: 4 + pull_request: 5 + branches: ["main"] 6 + workflow_dispatch: 7 + 8 + jobs: 9 + test-io: 10 + strategy: 11 + matrix: 12 + os: [ubuntu-latest, macos-latest] 13 + runs-on: ${{matrix.os}} 14 + steps: 15 + - uses: actions/checkout@v3 16 + - uses: mlugg/setup-zig@v1 17 + with: 18 + version: 0.14.0 19 + - run: zig build --summary all test