This commit is contained in:
parent
08417abd93
commit
917b74b8ee
1 changed files with 18 additions and 0 deletions
18
.forgejo/workflows/compile.yaml
Normal file
18
.forgejo/workflows/compile.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: rust:trixie
|
||||||
|
steps:
|
||||||
|
- name: prepare packages
|
||||||
|
run: |
|
||||||
|
apt update && \
|
||||||
|
apt -y install nodejs git
|
||||||
|
|
||||||
|
- run: which git
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: build the package
|
||||||
|
run: cargo build
|
||||||
Loading…
Add table
Add a link
Reference in a new issue