generator, service: Add Python 3.14 support, part 1 (#1256) #832
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'releases/**' | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
check_nims: | |
name: Check NIMS | |
uses: ./.github/workflows/check_nims.yml | |
check_nims_docs: | |
name: Check NIMS docs | |
uses: ./.github/workflows/check_nims_docs.yml | |
check_nimg: | |
name: Check NIMG | |
uses: ./.github/workflows/check_nimg.yml | |
checks_succeeded: | |
name: Checks succeeded | |
needs: [check_nims, check_nims_docs, check_nimg] | |
runs-on: ubuntu-latest | |
steps: | |
- run: exit 0 | |
check_examples: | |
name: Check examples | |
uses: ./.github/workflows/check_examples.yml | |
run_unit_tests: | |
name: Run unit tests | |
uses: ./.github/workflows/run_unit_tests.yml | |
needs: [check_nims] | |
run_system_tests: | |
name: Run system tests | |
uses: ./.github/workflows/run_system_tests.yml | |
needs: [run_unit_tests] | |
report_test_results: | |
name: Report test results | |
uses: ./.github/workflows/report_test_results.yml | |
needs: [run_unit_tests, run_system_tests] | |
if: always() | |
permissions: | |
checks: write | |
pull-requests: write |