Skip to content

Correct docs and the sort label ahead of the next release (#41) #75

Correct docs and the sort label ahead of the next release (#41)

Correct docs and the sort label ahead of the next release (#41) #75

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- run: rustup update stable && rustup default stable
- uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test