running continuous integration for ec4d20547318cf6006109876e16688fcba51b34b by @wisn #8
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 |