Skip to content

Commit

Permalink
build: Add apt-get update to Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
MKleusberg committed Aug 21, 2021
1 parent b8ffe16 commit 302ade7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cppcmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install qttools5-dev libqt5scintilla2-dev libqcustomplot-dev libsqlite3-dev
run: |
sudo apt-get update
sudo apt-get install qttools5-dev libqt5scintilla2-dev libqcustomplot-dev libsqlite3-dev
- name: Configure CMake
run: |
cmake --version
Expand Down

0 comments on commit 302ade7

Please sign in to comment.