develop: Redesigned color-scheme #79
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
# More information on workflow configurations, | |
# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: 'Test Workflows' | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
paths: | |
- .github/workflows/**.yml | |
- .env.example | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint GitHub Action workflows | |
uses: raven-actions/actionlint@v1 | |
with: | |
group-result: false | |
shellcheck: true | |
pyflakes: false | |
flags: '-ignore SC2086' | |
- name: Lint .env files | |
uses: dotenv-linter/action-dotenv-linter@v2 | |
with: | |
reporter: github-pr-check | |
dotenv_linter_flags: --skip UnorderedKey |