mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted-data.git
synced 2026-03-11 08:55:24 +00:00
- https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#name
17 lines
274 B
YAML
17 lines
274 B
YAML
name: pull request
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: make awesome_lint
|
|
- run: make export
|