docs: Refactor README and move extensive guides to docs/ #25
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| release-gates: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| zig-version: [0.15.2] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Zig | |
| uses: mlugg/setup-zig@v2 | |
| with: | |
| version: ${{ matrix.zig-version }} | |
| - name: Run test gate | |
| run: zig build test --summary all | |
| - name: Run release build gate | |
| run: zig build -Doptimize=ReleaseFast | |
| interop-matrix: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| peer: [quiche, ngtcp2, msquic] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Report interop lane | |
| run: | | |
| echo "Interop lane: ${{ matrix.peer }}" | |
| echo "This lane is reserved for full cross-implementation interop tests." |