Skip to content

Bump regex from 1.10.4 to 1.10.6 #243

Bump regex from 1.10.4 to 1.10.6

Bump regex from 1.10.4 to 1.10.6 #243

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install checkers and linters
run: |
rustup update stable
rustup default stable
rustup component add rustfmt
rustup component add clippy
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Check Idiomatic
run: cargo clippy --all --all-features -- -D warnings