Use beta channel for Zig snap #65
This file contains 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: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install the latest Zig version | |
run: sudo snap install zig --classic --beta | |
- uses: actions/checkout@v2 | |
- name: Run library tests | |
run: zig build test | |
- name: Run znk tests | |
run: zig build test-znk |