Skip to content

Commit 0836cfa

Browse files
authored
ci: add GitHub action for running tests
1 parent 6841ffb commit 0836cfa

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/makefile.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Clone Ziglua
15+
uses: actions/checkout@v3
16+
17+
- name: Setup Zig
18+
uses: goto-bus-stop/setup-zig@v1
19+
with:
20+
version: master
21+
22+
- name: Run tests
23+
run: make test

0 commit comments

Comments
 (0)