Skip to content

Commit 5fdf5e9

Browse files
committed
Add macos and windows to CI.
1 parent 4b16441 commit 5fdf5e9

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,19 @@ jobs:
1414
run: g++ -Wall -W -O2 remake.cpp -o remake
1515
- name: test
1616
run: ./remake check
17+
18+
build-macos:
19+
runs-on: macos-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: build
23+
run: clang++ -Wall -W -O2 remake.cpp -o remake
24+
- name: test
25+
run: ./remake check
26+
27+
build-windows:
28+
runs-on: windows-latest
29+
steps:
30+
- uses: actions/checkout@v4
31+
- name: build
32+
run: g++ -Wall -W -O2 remake.cpp -o remake -lws2_32

0 commit comments

Comments
 (0)