feat: checks using forgejo actions
Some checks failed
/ test (push) Failing after 26s

This commit is contained in:
user0-07161 2026-02-09 19:52:52 +01:00
parent 08417abd93
commit 88614eaf53

View file

@ -0,0 +1,22 @@
on: [push]
jobs:
test:
runs-on: docker
container:
image: code.forgejo.org/oci/debian:latest
steps:
- name: prepare packages
run: |
apt update && \
apt -y install git
- name: checkout
run: |
git init
git remote add origin ${FORGEJO_SERVER_URL}/${FORGEJO_REPOSITORY}
git fetch origin
git fetch origin ${FORGEJO_REF}
git checkout ${FORGEJO_REF_NAME}
- name: build the package
run: cargo build