git-next/.forgejo/workflows/push-next.yml
Paul Campbell dbe3f789f9
Some checks failed
Rust / build (push) Failing after 2s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
build(forgejo): add push-next job
2024-05-16 07:20:25 +01:00

33 lines
592 B
YAML

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: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
# args: --release --all-features
- uses: actions-rs/cargo@v1
with:
command: test
# - name: Build
# run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose