skip/.forgejo/workflows/push-next.yml
Paul Campbell f645c4d15e
All checks were successful
Rust / build (push) Successful in 21s
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline was successful
build: update forgejo action to rust 1.80.1
2024-08-11 09:04:47 +01:00

44 lines
881 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@v1.80.1
with:
args: cargo fmt --all -- --check
# - name: Machete
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with:
args: cargo clippy
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with:
args: cargo build
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v1.80.1
with:
args: cargo test --no-fail-fast
- name: Integration
run: ./test.sh