Skip to content

Commit

Permalink
Add CI tests for 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
gchazot committed Dec 6, 2024
1 parent 542123f commit 043493b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Run tests

on: [push]
on: [ push ]

jobs:
list-tests:
Expand All @@ -25,12 +25,14 @@ jobs:
- 'year_2019/**'
year_2023:
- 'year_2023/**'
year_2023:
- 'year_2024/**'
- id: set-matrix
run: echo "::set-output name=matrix::$(./list_test_combinations.sh ${{ join(fromJSON(steps.filter.outputs.changes), ' ') }})"

test:
runs-on: ubuntu-latest
needs: [list-tests]
needs: [ list-tests ]
if: ${{ needs.list-tests.outputs.matrix != '[]' && needs.list-tests.outputs.matrix != '' }}
strategy:
matrix:
Expand Down Expand Up @@ -69,7 +71,7 @@ jobs:

all-tests:
runs-on: ubuntu-latest
needs: [list-tests, test]
needs: [ list-tests, test ]
if: always()
steps:
- name: Failed tests
Expand Down

0 comments on commit 043493b

Please sign in to comment.