awesome-selfhosted-data/.github/workflows/pull-request.yml
nodiscc 423b418371
tools/github actions: fix concurrency between workflows
- only jobs that are part of the same workflow should not run concurrently
2023-07-22 19:13:03 +02:00

17 lines
298 B
YAML

name: pull request
on:
pull_request:
branches: [ master ]
concurrency:
group: pull-request-${{ github.ref }}
cancel-in-progress: true
jobs:
syntax-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make awesome_lint
- run: make export