mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
be6b42e2d2
* ci: fix rawhide action files * fix: readd frawhide in update-comps
23 lines
425 B
YAML
23 lines
425 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- frawhide
|
|
pull_request:
|
|
branches:
|
|
- frawhide
|
|
merge_group:
|
|
branches:
|
|
- frawhide
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:frawhide
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Lint spec files
|
|
run: rpmlint $(find anda -type f -name "*.spec" -type f)
|