Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
horacehoff authored Apr 16, 2024
1 parent a32a573 commit dddc034
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: dir
run: cd target & cd release & dir

build_macos:
runs-on: macos-latest
Expand All @@ -26,12 +26,12 @@ jobs:
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: ls
run: cd target && cd release && ls
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: ls
run: cd target && cd release && ls

0 comments on commit dddc034

Please sign in to comment.