Paul Campbell
80af909ab0
All checks were successful
Release Please / Release-plz (push) Successful in 1m18s
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
Rust / build (push) Successful in 10m7s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
38 lines
800 B
YAML
38 lines
800 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.81.0
|
|
with:
|
|
args: cargo fmt --all -- --check
|
|
|
|
- name: Clippy
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
|
with:
|
|
args: cargo hack --feature-powerset clippy
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
|
with:
|
|
args: cargo hack --feature-powerset build
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.81.0
|
|
with:
|
|
args: cargo hack --feature-powerset test
|