tangled
alpha
login
or
join now
zzstoatzz.io
/
zat
1
fork
atom
atproto tools in zig
zat.dev
sdk
atproto
zig
1
fork
atom
overview
issues
pulls
pipelines
add github actions ci
zzstoatzz.io
2 months ago
dbfc8386
9f6ff453
+26
1 changed file
expand all
collapse all
unified
split
.github
workflows
ci.yml
+26
.github/workflows/ci.yml
···
1
1
+
name: CI
2
2
+
3
3
+
on:
4
4
+
push:
5
5
+
branches: [main]
6
6
+
pull_request:
7
7
+
schedule:
8
8
+
- cron: "0 0 * * 0" # weekly
9
9
+
10
10
+
jobs:
11
11
+
lint:
12
12
+
runs-on: ubuntu-latest
13
13
+
steps:
14
14
+
- uses: actions/checkout@v4
15
15
+
- uses: mlugg/setup-zig@v2
16
16
+
- run: zig fmt --check .
17
17
+
18
18
+
test:
19
19
+
strategy:
20
20
+
matrix:
21
21
+
os: [ubuntu-latest, macos-latest]
22
22
+
runs-on: ${{ matrix.os }}
23
23
+
steps:
24
24
+
- uses: actions/checkout@v4
25
25
+
- uses: mlugg/setup-zig@v2
26
26
+
- run: zig build test --summary all