build(forgejo): add push-next job
Some checks failed
Some checks failed
This commit is contained in:
parent
d87af324d6
commit
03c84b1564
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/push-next.yml
Normal file
21
.forgejo/workflows/push-next.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
name: Rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["next"]
|
||||||
|
pull_request:
|
||||||
|
branches: ["main"]
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --verbose
|
||||||
|
- name: Run tests
|
||||||
|
run: cargo test --verbose
|
Loading…
Reference in a new issue