We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f4600f commit e395e34Copy full SHA for e395e34
1 file changed
.github/workflows/ci.yml
@@ -6,13 +6,15 @@ on:
6
- cron: "0 0 1 * *"
7
jobs:
8
build:
9
- runs-on: ubuntu-22.04
10
strategy:
11
matrix:
12
include:
13
- - { cc: gcc, cxx: g++ }
14
- - { cc: clang, cxx: clang++, features: asan }
15
- - { cc: clang, cxx: clang++, features: exttests }
+ - { os: ubuntu-latest, cc: gcc, cxx: g++ }
+ - { os: ubuntu-latest, cc: clang, cxx: clang++, features: asan }
+ - { os: ubuntu-latest, cc: clang, cxx: clang++, features: exttests }
+ - { os: ubuntu-22.04, cc: gcc, cxx: g++ }
16
+ - { os: ubuntu-22.04, cc: clang, cxx: clang++, features: asan }
17
+ - { os: ubuntu-22.04, cc: clang, cxx: clang++, features: exttests }
18
steps:
19
- uses: actions/checkout@v5
20
- name: Set up environment
0 commit comments