github: Upgrade GitHub actions that depend on deprecated Node.js vers… #141
This file contains 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: | |
- master | |
- 'releases/**' | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yml | |
run_unit_tests: | |
name: Run unit tests | |
uses: ./.github/workflows/run_unit_tests.yml | |
needs: [build] | |
generate_docs: | |
name: Generate docs | |
uses: ./.github/workflows/generate_docs.yml | |
needs: [build] | |
run_system_tests: | |
name: Run system tests | |
uses: ./.github/workflows/run_system_tests.yml | |
needs: [build, 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() |