Skip to content

Update the samples...eveything now works apart from test 018 #42

Update the samples...eveything now works apart from test 018

Update the samples...eveything now works apart from test 018 #42

Workflow file for this run

name: biscuit
on: push
jobs:
tests:
strategy:
matrix:
dir:
[
"biscuit-schema",
"biscuit-format",
"biscuit-datalog",
"biscuit",
"biscuit-samples",
]
os: [ubuntu-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v1
with:
version: master
- name: zig build test
working-directory: "./${{matrix.dir}}"
run: zig build test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v1
with:
version: master
- run: zig fmt --check .