Skip to content

chore: init repo

chore: init repo #1

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
run: rustup show
- name: Run cargo fmt
run: cargo fmt -- --check
- name: Run cargo clippy
run: cargo clippy --all-features -- -D warnings