forked from Fediversity/Fediversity
Basic CI that checks pre-commits
This commit is contained in:
parent
e51fca5f0e
commit
4b77808f3f
16
.forgejo/workflow/ci.yaml
Normal file
16
.forgejo/workflow/ci.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
- reopened
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-pre-commit:
|
||||||
|
runs-on: native
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: nix build .#checks.x86_64-linux.pre-commit -L
|
Loading…
Reference in a new issue