This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
Don't complain about adding a script that already exists. Also fixed … #511
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: Continuous Integration | |
on: | |
# Triggers the workflow for pushes to development, for pull request events, and for the merge queue | |
push: | |
branches: [development] | |
pull_request: | |
types: [opened, reopened, ready_for_review, synchronize] | |
merge_group: | |
types: [checks_requested] | |
workflow_dispatch: | |
# Cancel in-progress runs if newer changes to the same branch/PR are pushed. | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
meson: | |
uses: ./.github/workflows/meson.yml | |
msbuild: | |
uses: ./.github/workflows/msbuild.yml | |