Compare commits

...

1 Commits

Author SHA1 Message Date
01afad832c feat: add woodpecker ci jobs
All checks were successful
Build / precommit (pull_request) Successful in 3m59s
ci/woodpecker/pr/pre-commit Pipeline was successful
- add libffi to actions build (fix pre-commit issue)
- pre-commit job to run pre-commit against
2026-02-28 17:10:18 +11:00
2 changed files with 11 additions and 1 deletions

View File

@ -17,7 +17,7 @@ jobs:
- name: Install requirements - name: Install requirements
run: | run: |
dnf groupinstall -y "Development Tools" -y dnf groupinstall -y "Development Tools" -y
dnf install rubygems ruby-devel gcc make redhat-rpm-config glibc-headers glibc-devel -y dnf install rubygems ruby-devel gcc make redhat-rpm-config glibc-headers glibc-devel libffi libffi-devel -y
- name: Pre-Commit All Files - name: Pre-Commit All Files
run: | run: |

View File

@ -0,0 +1,10 @@
when:
- event: pull_request
steps:
- name: pre-commit
image: git.unkin.net/unkin/almalinux9-base:latest
commands:
- dnf groupinstall -y "Development Tools" -y
- dnf install uv rubygems ruby-devel gcc make redhat-rpm-config glibc-headers glibc-devel libffi libffi-devel -y
- uvx pre-commit run --all-files