Skip to content

Replace single match with if let in auth_file_watcher.rs #69

Replace single match with if let in auth_file_watcher.rs

Replace single match with if let in auth_file_watcher.rs #69

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ "master", "ci/**" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features