mirror of
https://github.com/Respect/Validation.git
synced 2026-03-22 17:54:41 +01:00
- Added a composite action for common setup tasks. - Shorter names that fit better GitHub runner displays. - Changed ci-perf to only run if src or tests change. - Removed redundant step names when they're obvious.
23 lines
395 B
YAML
23 lines
395 B
YAML
name: REUSE
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
reuse-check:
|
|
name: Compliance Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: ./.github/actions/setup-action
|
|
with:
|
|
python-version: '3.x'
|
|
python-deps: reuse
|
|
|
|
- run: reuse lint
|
|
- run: bin/console lint:spdx
|