Skip to content

Fixed README typo.

Fixed README typo. #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
- name: Cargo check
run: cargo check
- name: Cargo clippy
run: cargo clippy -- -D warnings
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo test
run: cargo test