Skip to content

fix project name fallback #12

fix project name fallback

fix project name fallback #12

Workflow file for this run

name: Unit tests, linting, and formatting
on: [push]
jobs:
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --check
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Run tests
run: cargo test
- name: Lint
run: cargo clippy