Skip to content

Commit

Permalink
fix binary path in test
Browse files Browse the repository at this point in the history
  • Loading branch information
zengxs committed Nov 22, 2024
1 parent 191f79d commit f948b5a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
run: |
case ${{ matrix.os }} in
ubuntu-latest)
./dist/linux-amd64/demo --database-url=sqlite://./test.sqlite3
./dist/linuxgnu-amd64/demo --database-url=sqlite://./test.sqlite3
./dist/linuxmusl-amd64/demo --database-url=sqlite://./test.sqlite3
;;
macos-latest)
./dist/darwin/demo --database-url=sqlite://./test.sqlite3
Expand All @@ -62,7 +63,8 @@ jobs:
make all
- name: Test
run: |
./dist/linux-amd64/demo --database-url=sqlite://./test.sqlite3
./dist/linuxgnu-amd64/demo --database-url=sqlite://./test.sqlite3
./dist/linuxmusl-amd64/demo --database-url=sqlite://./test.sqlite3
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit f948b5a

Please sign in to comment.