This repository was archived by the owner on Mar 15, 2025. It is now read-only.
Update readme in prep for archiving #32
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
# Main workflow to keep branches clean | |
name: Main | |
on: | |
push: | |
branches: | |
# main branch CI | |
- 'main' | |
# Any branch | |
- '*' | |
# Run on pull request | |
pull_request: | |
types: [ opened, synchronize ] | |
# Cancel current workflow if there is already one running | |
concurrency: | |
group: ${{ github.workflow }} ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
with: | |
test: true |