2024-05-16 06:52:22 +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
|
2024-08-03 12:59:24 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-05-16 20:00:29 +01:00
|
|
|
args: fmt --all -- --check
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
- name: Clippy
|
2024-08-03 12:59:24 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-07-02 18:29:52 +01:00
|
|
|
args: clippy
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
- name: Build
|
2024-08-03 12:59:24 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-05-16 20:00:29 +01:00
|
|
|
args: build
|
2024-05-16 06:52:22 +01:00
|
|
|
|
|
|
|
- name: Test
|
2024-08-03 12:59:24 +01:00
|
|
|
uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1
|
2024-05-16 06:52:22 +01:00
|
|
|
with:
|
2024-05-16 20:00:29 +01:00
|
|
|
args: test
|