Skip to content

feat!: the Rust™ Rewrite #83

feat!: the Rust™ Rewrite

feat!: the Rust™ Rewrite #83

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
- '.vscode/**'
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
- '.vscode/**'
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
lfs: true
- name: Setup rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "${{ runner.os }}-tosho-rust"
- name: Build
run: cargo build --verbose --all
- name: Lint
run: cargo clippy --verbose --all -- -D warnings
- name: Tests
run: cargo test --verbose --all