chore: point to latest snappy with correct encoding #19
Workflow file for this run
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
| on: [push, pull_request] | |
| name: CI | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Zig | |
| uses: korandoru/setup-zig@v1 | |
| with: | |
| zig-version: 0.14.0 | |
| - name: Lint | |
| run: zig fmt --check *.zig | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Zig | |
| uses: korandoru/setup-zig@v1 | |
| with: | |
| zig-version: 0.14.0 | |
| - name: Test | |
| run: zig build test --summary all |