Skip to content

Commit 943f2d6

Browse files
authored
Merge pull request #29 from tsoding/github-ci-macos
Add GitHub CI on MacOS
2 parents 9463be3 + fe35c29 commit 943f2d6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/nob.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ name: no-build build
22
on: [push, pull_request]
33

44
jobs:
5+
macos:
6+
runs-on: macos-latest
7+
steps:
8+
- name: Clone GIT repo
9+
uses: actions/checkout@v4
10+
- name: Build nob
11+
run: clang -o nob nob.c
12+
- name: Run nob
13+
run: ./nob
514
ubuntu:
615
strategy:
716
matrix:

0 commit comments

Comments
 (0)