git-next/.forgejo/workflows/push-next.yml
Paul Campbell 03c84b1564
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 8s
ci/woodpecker/push/push-next Pipeline was successful
/ test (push) Successful in 2m14s
build(forgejo): add push-next job
2024-05-16 07:09:18 +01:00

21 lines
314 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
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose