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