Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Initial update, some refactoring #237

Initial update, some refactoring

Initial update, some refactoring #237

Workflow file for this run

name: Rust
on: [push]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
CARGO_INCREMENTAL: 0
jobs:
rust-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with:
workspaces: "rust -> target"
- name: Rust Build
run: cd rust; cargo build --release
rust-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with:
workspaces: "rust -> target"
- name: Rust Clippy
run: cd rust; cargo clippy
rust-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with:
workspaces: "rust -> target"
- name: Rust Run tests
run: cd rust; cargo test
rust-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
- name: Rust Format
run: cd rust; cargo fmt -- --check