We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8a5b3a commit e30e92cCopy full SHA for e30e92c
1 file changed
.github/workflows/ci.yml
@@ -22,11 +22,16 @@ jobs:
22
- name: build
23
run: clang++ -Wall -W -O2 remake.cpp -o remake
24
- name: test
25
- run: ./remake check
+ run: |
26
+ cd testsuite
27
+ ./all.sh t001.sh t002.sh t003.sh t004.sh t005.sh t006.sh t007.sh t008.sh t010.sh t011.sh t014.sh t015.sh
28
29
build-windows:
30
runs-on: windows-latest
31
steps:
32
- uses: actions/checkout@v4
33
- run: g++ -Wall -W -O2 remake.cpp -o remake -lws2_32
34
+ run: g++ -Wall -W -O2 remake.cpp -o remake.exe -lws2_32
35
+ - name: test
36
+ shell: bash
37
+ run: ./remake check
0 commit comments