Skip to content

Commit

Permalink
Run both experimental and non-experimental tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed May 19, 2024
1 parent 3f03842 commit 114df3d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ on:
pull_request:

jobs:
build:
build_and_test:
strategy:
matrix:
experimental: [true, false]
runs-on: ubuntu-latest
name: Test examples

name: Test examples - ${{ matrix.experimental && 'experimental' || 'non-experimental' }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -22,12 +24,12 @@ jobs:
with:
python-version: '3.11'
- name: Build and test
run: ./scripts/github-ci.sh enable_python build test_examples test
run: ./scripts/github-ci.sh ${{ matrix.experimental && 'experimental' }} enable_python build test_examples test
- name: Upload Test Result Report
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test Result Report (Test examples)
name: Test Result Report (Test examples ${{ matrix.experimental && 'experimental' || 'non-experimental' }})
path: |
b/Testing/Temporary/*_report.html
b/Testing/Temporary/LastTest.log

0 comments on commit 114df3d

Please sign in to comment.