Some checks failed
Continuous Integration / lint_n_build (push) Has been cancelled
18 lines
294 B
YAML
18 lines
294 B
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint_n_build:
|
|
runs-on: linux
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
- run: make tarball
|
|
- run: rpmbuild -ba "$(make name).spec"
|