We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45088e2 commit f96c45bCopy full SHA for f96c45b
2 files changed
.github/workflows/code_formatting.yaml
@@ -33,7 +33,7 @@ concurrency:
33
jobs:
34
check-code-format:
35
name: Code Formatting Check
36
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
37
steps:
38
- uses: actions/checkout@v2
39
with:
@@ -56,4 +56,4 @@ jobs:
56
# is also used by other repos that submodule this repo.
57
- uses: ./check-code-style
58
59
- os: ubuntu-latest
+ os: ubuntu-20.04
check-code-style/action.yml
@@ -12,7 +12,7 @@ runs:
12
using: "composite"
13
14
- name: Install code checking tools if on Ubuntu
15
- if: inputs.os == 'ubuntu-latest'
+ if: inputs.os == 'ubuntu-latest' || inputs.os == 'ubuntu-20.04'
16
run: |
17
# Install Clang (including clang-format) through LLVM's preferred mechanism:
18
# https://apt.llvm.org/
0 commit comments