git-next/.forgejo/workflows/push-next.yml
Paul Campbell 588666ffe1
All checks were successful
Rust / build (push) Successful in 2m22s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
tests: add more tests to git crate
2024-06-13 19:50:19 +01:00

38 lines
715 B
YAML

name: Rust
on:
push:
branches: ["next"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Format
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: fmt --all -- --check
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: clippy -- -D warnings
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: build
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: test