skip/.forgejo/workflows/push-next.yml

45 lines
881 B
YAML
Raw Normal View History

2024-07-30 07:11:27 +01:00
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.81.0
2024-07-30 07:11:27 +01:00
with:
args: cargo fmt --all -- --check
2024-07-30 07:11:27 +01:00
# - name: Machete
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
2024-07-30 07:11:27 +01:00
with:
args: cargo clippy
2024-07-30 07:11:27 +01:00
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
2024-07-30 07:11:27 +01:00
with:
args: cargo build
2024-07-30 07:11:27 +01:00
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
2024-07-30 07:11:27 +01:00
with:
args: cargo test --no-fail-fast
2024-07-30 07:11:27 +01:00
- name: Integration
run: ./test.sh