Skip to content

upgrade to zig 0.12.1 #12

upgrade to zig 0.12.1

upgrade to zig 0.12.1 #12

Workflow file for this run

name: zig-test
on:
push:
branches:
- main
paths:
- "src/**/*.zig"
- "src/*.zig"
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
zig-test:
name: zig test
runs-on: ubuntu-latest
container:
image: ghcr.io/lightpanda-io/zig:0.12.0-dev.3439-31a7f22b8
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- run: zig test constants.zig
- run: zig test fifo.zig
- run: zig test io.zig
- run: zig test time.zig