38 lines
712 B
YAML
38 lines
712 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.0-1
|
|
with:
|
|
args: fmt --all -- --check
|
|
|
|
- name: Clippy
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
|
with:
|
|
args: clippy
|
|
|
|
- name: Build
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
|
with:
|
|
args: build
|
|
|
|
- name: Test
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
|
with:
|
|
args: test
|