honeycomb-ipc/.forgejo/workflows/compile.yaml
user0-07161 f746c02419
Some checks failed
/ test (push) Failing after 15s
feat: checks using forgejo actions
2026-02-09 20:29:32 +01:00

19 lines
377 B
YAML

on: [push]
jobs:
test:
runs-on: docker
container:
image: rust:trixie
steps:
- name: prepare packages
run: |
apt update && \
apt -y install git nodejs
- run: touch test
shell: bash
- uses: actions/setup-node@v3
- uses: actions/checkout@v6
- name: build the package
run: cargo build