on: [push, pull_request] name: Test jobs: build: runs-on: docker steps: - name: Checkout code uses: actions/checkout@v4 - run: | apt update; apt install --yes sudo - uses: https://github.com/mlugg/setup-zig@v1 with: version: master # Cross-compile the binary. We always use static building for this # because its the only way to access the headers. - name: Test run: zig build test --summary all