Skip to content

Commit

Permalink
Attempt fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LeChatP committed Sep 9, 2024
1 parent 3f19689 commit dd34ee5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
override: true

- name: Install Dependencies
run: sudo cargo xtask dependencies -i -d
run: sudo $(command -v cargo) xtask dependencies -i -d

- name: Build
run: cargo xtask deploy debian redhat
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
override: false

- name: Install Dependencies
run: sudo -E cargo xtask dependencies -di
run: sudo $(command -v cargo) xtask dependencies -di

# if pull request review only
- uses: mbrobbel/rustfmt-check@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: apt install sudo -y

- name: Install Dependencies
run: sudo -E cargo xtask dependencies -di
run: sudo $(command -v cargo) xtask dependencies -di

- name: run tests with coverage
run: cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --bin chsr --bin sr --exclude-files build.rs xtask* --out Xml
Expand Down

0 comments on commit dd34ee5

Please sign in to comment.