Skip to content

Remove unneeded mut_pat handling #88

Remove unneeded mut_pat handling

Remove unneeded mut_pat handling #88

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: nightly
override: true
- name: Check formatting of all crates in the workspace
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo test --all
uses: actions-rs/cargo@v1
with:
command: test
args: --all --locked