Skip to content

Refactor test matrix: most logic at top level, call reusable workflow #1321

Refactor test matrix: most logic at top level, call reusable workflow

Refactor test matrix: most logic at top level, call reusable workflow #1321

Workflow file for this run

name: run-tests
on:
push:
branches:
- '**master**'
- '**_run_ci**'
- '**release**'
pull_request:
types: [opened, reopened, labeled, synchronize]
workflow_dispatch:
jobs:
test:
if: |
github.event_name != 'pull_request' ||
(github.event.action == 'labeled' && github.event.label.name == 'run_ci') ||
(github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'no_ci'))
strategy:
matrix:
config:
- os: ubuntu-latest
skip: false
all-python-versions: ${{(github.event_name == 'workflow_dispatch')}}
coverage: true
- os: windows-latest
skip: false
all-python-versions: ${{(github.event_name == 'workflow_dispatch')}}
coverage: false
- os: macos-latest
skip: false
all-python-versions: ${{(github.event_name == 'workflow_dispatch')}}
coverage: false
- os: macos-13
skip: ${{ github.event_name != 'workflow_dispatch' }}
all-python-versions: true
coverage: false
fail-fast: false
uses: ./.github/workflows/test_checkout_one_os.yml

Check failure on line 40 in .github/workflows/run_tests.yml

View workflow run for this annotation

GitHub Actions / run-tests

Invalid workflow file

The workflow is not valid. In .github/workflows/run_tests.yml (Line: 40, Col: 11): Error from called workflow pace-neutrons/Euphonic/.github/workflows/test_checkout_one_os.yml@20ea55710e7cb8742cfb5d84809d5d1df212f21d: (Line: 28, Col: 9, Idx: 612) - (Line: 28, Col: 10, Idx: 613): While parsing a tag, did not find expected tag URI.
with:
os: ${{ matrix.config.os }}
skip: ${{ matrix.config.skip }}
all-python-versions: ${{ matrix.config.all-python-versions }}
coverage: ${{ matrix.config.coverage }}
secrets: inherit
test-docs:
runs-on: ubuntu-latest
if: success() || failure()
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Update pip and install dependencies
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
python -m pip install -r tests_and_analysis/ci_requirements.txt
python -m pip install -r doc/requirements.txt
python -m pip install .[matplotlib,phonopy-reader,brille]
- name: Run Sphinx doctests
working-directory: ./doc
shell: bash -l {0}
run: sphinx-build -c source -b doctest source .
- name: Upload docstest results
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: Doctest results
path: doc/output.txt
publish-test-results:
needs: test
runs-on: ubuntu-latest
if: success() || failure()
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
junit_files: artifacts/**/junit_report*.xml