Build, lint and test libiso15118 #175
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: Build, lint and test libiso15118 | |
on: | |
pull_request: {} | |
workflow_dispatch: | |
inputs: | |
runner: | |
description: Which runner to use | |
type: choice | |
default: 'ubuntu-22.04' | |
required: true | |
options: | |
- 'ubuntu-22.04' | |
- 'large-ubuntu-22.04-xxl' | |
schedule: | |
- cron: '37 13,1 * * *' | |
jobs: | |
ci: | |
name: Build, Lint and Test | |
uses: everest/everest-ci/.github/workflows/continuous_integration.yml@v1.4.3 | |
permissions: | |
contents: read | |
secrets: | |
coverage_deploy_token: ${{ secrets.SA_GITHUB_PAT }} | |
with: | |
runner: ${{ inputs.runner || 'ubuntu-22.04' }} | |
artifact_deploy_target_repo: EVerest/everest.github.io | |
run_coverage: true | |
do_not_run_coverage_badge_creation: false | |
run_install: false | |
run_install_wheels: false | |
run_integration_tests: false | |
ctest_report_path: ctest-report | |
coverage_report_path: gcovr-coverage | |
coverage_xml_path: gcovr-coverage-xml.xml |