mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 17:11:56 +00:00
23 lines
405 B
YAML
23 lines
405 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- f40
|
|
pull_request:
|
|
branches:
|
|
- f40
|
|
merge_group:
|
|
branches:
|
|
- f40
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:f40
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Lint spec files
|
|
run: rpmlint $(find anda -type f -name "*.spec" -type f)
|