honeycomb-ipc/.forgejo/workflows/compile.yaml
user0-07161 75e1fd8018
Some checks failed
/ test (push) Failing after 25s
feat: checks using forgejo actions
2026-02-09 22:04:15 +01:00

22 lines
524 B
YAML

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