Merge pull request #3841 from kebox7/features/fonts-improvement #11
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
# This workflow tests all code after any change to the main branch | |
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- src/** | |
- .github/workflows/ci.yaml | |
# cancel running versions of this workflow when this one starts | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
# Run the autoformatter in parallel too. | |
# If it makes a change it will commit it and restart this workflow. | |
autoformat: | |
name: "Autoformat" | |
uses: ./.github/workflows/task-autoformat-fix.yaml | |
secrets: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
# This security analysis evaluates non-compiled code | |
security: | |
name: "Security" | |
uses: ./.github/workflows/task-security-scan.yaml | |
permissions: | |
security-events: write | |
full: | |
name: "Full Build" | |
uses: ./.github/workflows/task-full.yaml | |
permissions: | |
security-events: write | |
publish-changelog: | |
name: "Publish" | |
needs: [full] | |
uses: ./.github/workflows/task-publish-changelog.yaml | |
secrets: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
publish-metrics: | |
name: "Publish" | |
needs: [full] | |
uses: ./.github/workflows/task-code-metrics.yaml | |
secrets: | |
private-ssh-key: ${{ secrets.PRIVATE_SSH_KEY }} |