This commit is contained in:
parent
b803dcb20e
commit
cbda7f3d6f
1 changed files with 18 additions and 0 deletions
18
.forgejo/workflows/rust.yml
Normal file
18
.forgejo/workflows/rust.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: Rust
|
||||
|
||||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: rust:trixie
|
||||
steps:
|
||||
- name: prepare packages
|
||||
run: apt update && apt install git node -y
|
||||
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: build
|
||||
run: cargo build
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue