Skip to content

Commit e30e92c

Browse files
committed
Add tests on windows and macos.
1 parent b8a5b3a commit e30e92c

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,16 @@ jobs:
2222
- name: build
2323
run: clang++ -Wall -W -O2 remake.cpp -o remake
2424
- name: test
25-
run: ./remake check
25+
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
2628
2729
build-windows:
2830
runs-on: windows-latest
2931
steps:
3032
- uses: actions/checkout@v4
3133
- name: build
32-
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

Comments
 (0)