build(forgejo): add push-next job
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Rust / build (push) Failing after 1m50s
ci/woodpecker/push/push-next Pipeline was successful

This commit is contained in:
Paul Campbell 2024-05-16 06:52:22 +01:00
parent d87af324d6
commit 4347719024
2 changed files with 33 additions and 6 deletions

View file

@ -1,6 +0,0 @@
on: [push]
jobs:
test:
runs-on: docker
steps:
- run: echo All Good Now

View file

@ -0,0 +1,33 @@
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
- uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
- uses: https://github.com/actions-rs/cargo@v1
with:
command: build
# args: --release --all-features
- uses: https://github.com/actions-rs/cargo@v1
with:
command: test
# - name: Build
# run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose