We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48dbaca commit 938e735Copy full SHA for 938e735
.github/workflows/ci_codebuild-tests.yml
@@ -5,7 +5,7 @@ on:
5
push:
6
# Run once a day
7
schedule:
8
- - cron: '0 0 * * *'
+ - cron: "0 0 * * *"
9
10
permissions:
11
id-token: write
@@ -16,18 +16,19 @@ jobs:
16
name: AWS CodeBuild CI
17
runs-on: ubuntu-latest
18
strategy:
19
- python:
20
- - "38"
21
- - "39"
22
- - "310"
23
- - "311"
24
- - "312"
25
- codebuild_file_name:
26
- - "awses_local.yml"
27
- - "examples.yml"
28
- - "integ.yml"
+ matrix:
+ python:
+ - "38"
+ - "39"
+ - "310"
+ - "311"
+ - "312"
+ codebuild_file_name:
+ - "awses_local.yml"
+ - "examples.yml"
29
+ - "integ.yml"
30
exclude:
- # No "awses_local" for py39
31
+ # No "awses_local.yml" file exists in py39/
32
- python: "39"
33
codebuild_file_name: "awses_local.yml"
34
steps:
0 commit comments