This repository was archived by the owner on Apr 9, 2025. It is now read-only.
use non-blocking socket #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: zig-test | |
| env: | |
| ZIG_VERSION: 0.13.0 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**/*.zig" | |
| - "src/*.zig" | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| zig-test: | |
| name: zig test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mlugg/setup-zig@v1 | |
| with: | |
| version: ${{ env.ZIG_VERSION }} | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: zig build test |