fork
Configure Feed
Select the types of activity you want to include in your feed.
a modern tui library written in zig
fork
Configure Feed
Select the types of activity you want to include in your feed.
1name: test
2
3on:
4 pull_request:
5 branches: ["main"]
6 workflow_dispatch:
7
8jobs:
9 test:
10 strategy:
11 matrix:
12 os: [ubuntu-latest, macos-latest, windows-latest]
13 runs-on: ${{matrix.os}}
14 steps:
15 - uses: actions/checkout@v3
16 - uses: mlugg/setup-zig@v1
17 with:
18 version: 0.13.0
19 - run: zig build test
20 check-fmt:
21 runs-on: ubuntu-latest
22 steps:
23 - uses: actions/checkout@v3
24 - uses: mlugg/setup-zig@v1
25 with:
26 version: 0.13.0
27 - run: zig fmt --check .