Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install dependencies (Linux)
run: sudo apt-get install -y clang-format-12
run: sudo apt update -y && sudo apt install -y clang-format-12

- name: Format (clang-format)
run: |
Expand All @@ -118,7 +118,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install dependencies (Linux)
run: sudo apt-get install -y clang-tidy-12
run: sudo apt update -y && sudo apt install -y clang-tidy-12

- name: Bazel cache
uses: PiotrSikora/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:

- name: Install dependencies (Linux)
if: ${{ matrix.deps != '' && startsWith(matrix.os, 'ubuntu') }}
run: sudo apt-get install -y ${{ matrix.deps }}
run: sudo apt update -y && sudo apt install -y ${{ matrix.deps }}

- name: Activate Docker/QEMU
if: startsWith(matrix.run_under, 'docker')
Expand Down