Skip to content

Commit

Permalink
ci: make latest-develop tests optional and latest mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
rflechtner committed Aug 3, 2023
1 parent 93493a6 commit b8e2b88
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ jobs:

strategy:
matrix:
image: ['latest-master', 'latest-develop', 'latest']
required: ['optional']
image: ['latest']
required: ['required']
include:
- image: 'latest-develop'
required: 'optional'

continue-on-error: ${{ matrix.required == 'optional' }}

Expand Down Expand Up @@ -198,11 +201,11 @@ jobs:
needs: [cache_imgs, bundle_cache]
strategy:
matrix:
image: ['latest-master', 'latest']
required: ['optional']
image: ['latest']
required: ['required']
include:
- image: 'latest-develop'
required: 'required'
required: 'optional'

continue-on-error: ${{ matrix.required == 'optional' }}
steps:
Expand Down

0 comments on commit b8e2b88

Please sign in to comment.