running continuous integration for 89730ccdb08c0dd2baef79f6ef88483385ba156a by @wisn #25
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
| name: CI | |
| run-name: running continuous integration for ${{ github.sha }} by @${{ github.actor }} | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: build and test | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.14.1 | |
| - run: zig build test |