dinopkg/.github/workflows/rust.yml

40 lines
784 B
YAML
Raw Normal View History

2024-07-15 21:30:45 +00:00
name: Check Vortex backend
on:
push:
branches:
- master
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Use Rust cache
uses: Swatinem/rust-cache@v2
- name: Install tools
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest,cargo-machete
- name: Run cargo build
run: cargo build
- name: Run cargo nextest
2024-07-15 21:35:57 +00:00
run: cargo nextest run --all-features
2024-07-15 21:30:45 +00:00
- name: Run cargo machete
run: cargo machete
2024-07-29 20:32:52 +00:00
- name: Run clippy
run: cargo clippy -- -D warnings
2024-07-15 21:30:45 +00:00
- name: Check formatting
run: cargo fmt --check