Skip to content

Commit

Permalink
chore: run apt update
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 committed Aug 14, 2024
1 parent b2920d7 commit 3dfb2d4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev
- run: |
sudo apt-get update
sudo apt-get install -y libudev-dev libusb-1.0-0-dev
- name: show versions
run: |
rustup show
Expand Down Expand Up @@ -56,7 +58,9 @@ jobs:
# setup shared-key to share cache with other jobs
shared-key: ${{ github.run_id }}-${{ github.run_attempt }}

- run: sudo apt-get install -y libudev-dev libusb-1.0.0-dev
- run: |
sudo apt-get update
sudo apt-get install -y libudev-dev libusb-1.0.0-dev
- name: test --all-features
run: |
#with --lib we only test the unit tests
Expand Down

0 comments on commit 3dfb2d4

Please sign in to comment.