git-next/.forgejo/workflows/push-next-on-builder.yml
Paul Campbell 0f7d1a8d42
Some checks failed
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
Rust / build (push) Failing after 1s
build(forgejo): add push-next job
Has both on-docker and on-builder variants while I workout which I can
get to work.
2024-05-16 13:44:05 +01:00

24 lines
349 B
YAML

name: Rust
on:
push:
branches: ["next"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: git-next-builder
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose