Skip to content

Add Clippy workflow (#3) #9

Add Clippy workflow (#3)

Add Clippy workflow (#3) #9

Workflow file for this run

name: Cargo Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Run cargo test
run: cargo test --verbose