skip/.forgejo/workflows/push-next.yml
Paul Campbell 7f5af60757
All checks were successful
Rust / build (push) Successful in 1m13s
ci/woodpecker/push/woodpecker Pipeline was successful
build: run integration test with same os as it was built
2024-09-17 14:30:05 +01:00

46 lines
952 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
uses: https://git.kemitix.net/kemitix/rust@v2.0.4
with:
args: ./test.sh