Skip to content

A rough idea of a code structure #12

A rough idea of a code structure

A rough idea of a code structure #12

Workflow file for this run

name: Rust Build & Test
on:
push:
pull_request:
merge_group:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
ci-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
- name: ci-job-format
run: make ci-job-format
ci-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- name: ci-job-clippy
run: make ci-job-clippy