Skip to content

Commit 7099b0f

Browse files
authored
Create build.yml
1 parent 55e93a5 commit 7099b0f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
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

Comments
 (0)