skip/.forgejo/workflows/push-next.yml
Renovate Bot 3667fa5ac1
Some checks failed
Rust / build (pull_request) Failing after 1m0s
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
chore(deps): update kemitix/rust action to v2
2024-09-17 10:48:24 +00:00

44 lines
877 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@v2.0.4
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@v2.0.4
with:
args: cargo clippy
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
with:
args: cargo build
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
with:
args: cargo test --no-fail-fast
- name: Integration
run: ./test.sh