Allow distinction between enabled/disabled features #114
Workflow file for this run
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 | |
# Controls when the workflow will run | |
on: | |
# Trigger the workflow on all pushes, except on tag creation | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
# Trigger the workflow on all pull requests | |
pull_request: ~ | |
# Allow workflow to be dispatched on demand | |
workflow_dispatch: ~ | |
jobs: | |
# Calls a reusable CI workflow to build & test the current repository. | |
# We skip jobs that will result in duplicate artifacts, since the code does not depend on the compiler. | |
ci: | |
name: ci | |
uses: ecmwf-actions/reusable-workflows/.github/workflows/ci.yml@v2 | |
with: | |
skip_matrix_jobs: | | |
[email protected] |