We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b16441 commit 5fdf5e9Copy full SHA for 5fdf5e9
1 file changed
.github/workflows/ci.yml
@@ -14,3 +14,19 @@ jobs:
14
run: g++ -Wall -W -O2 remake.cpp -o remake
15
- name: test
16
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
30
31
32
+ run: g++ -Wall -W -O2 remake.cpp -o remake -lws2_32
0 commit comments