We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21269ea commit 05c888bCopy full SHA for 05c888b
.github/workflows/R-CMD-check.yaml
@@ -32,13 +32,13 @@ jobs:
32
- {os: windows-latest, r: '4.1'}
33
34
# Use older ubuntu to maximise backward compatibility
35
- - {os: ubuntu-20.04, r: 'devel', http-user-agent: 'release'}
36
- - {os: ubuntu-20.04, r: 'release'}
37
- - {os: ubuntu-20.04, r: 'release', custom: 'no-cpp11test'}
38
- - {os: ubuntu-20.04, r: 'oldrel-1'}
39
- - {os: ubuntu-20.04, r: 'oldrel-2'}
40
- - {os: ubuntu-20.04, r: 'oldrel-3'}
41
- - {os: ubuntu-20.04, r: 'oldrel-4'}
+ - {os: ubuntu-22.04, r: 'devel', http-user-agent: 'release'}
+ - {os: ubuntu-22.04, r: 'release'}
+ - {os: ubuntu-22.04, r: 'release', custom: 'no-cpp11test'}
+ - {os: ubuntu-22.04, r: 'oldrel-1'}
+ - {os: ubuntu-22.04, r: 'oldrel-2'}
+ - {os: ubuntu-22.04, r: 'oldrel-3'}
+ - {os: ubuntu-22.04, r: 'oldrel-4'}
42
43
env:
44
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/format.yaml
@@ -9,15 +9,15 @@ name: format_check
9
10
jobs:
11
format_check:
12
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
13
steps:
14
- uses: actions/checkout@v2
15
16
- name: Install ClangFormat
17
- run: sudo apt-get install -y clang-format-10
+ run: sudo apt-get install -y clang-format-12
18
19
- name: Run ClangFormat
20
- run: make format clang_format=clang-format-10
+ run: make format clang_format=clang-format-12
21
22
- name: Check for a non-empty diff
23
run: git diff-files -U --exit-code
0 commit comments