Skip to content

Commit

Permalink
apt update before apt install (#265)
Browse files Browse the repository at this point in the history
* apt update before apt install

* Fix sudo
  • Loading branch information
n0vad3v authored Aug 9, 2023
1 parent 6790ddd commit ab43732
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Setup necessary packages
run: |
sudo apt install libvips-dev -y
sudo apt update && sudo apt install libvips-dev -y
- name: run test cases
run: make && make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Setup necessary packages
run: |
sudo apt install libvips-dev -y
sudo apt update && sudo apt install libvips-dev -y
- name: run test cases
run: make && make test
Expand Down

0 comments on commit ab43732

Please sign in to comment.