We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e93a5 commit 7099b0fCopy full SHA for 7099b0f
.github/workflows/build.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ strategy:
13
+ matrix:
14
+ platform: [ubuntu-latest, macos-latest, windows-latest]
15
+ runs-on: ${{ matrix.platform }}
16
17
+ steps:
18
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19
+ - uses: actions/checkout@v2
20
21
+ - name: Setup Zig
22
+ uses: goto-bus-stop/setup-zig@v1.2.3
23
+ with:
24
+ version: master
25
26
+ - name: Run tests
27
+ run: |
28
+ zig test known-folders.zig
0 commit comments