Skip to content

Test file monitoring #12

Test file monitoring

Test file monitoring #12

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
RUST_FLAGS: "-Dwarnings"
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Cache
uses: actions/[email protected]
with:
path: |
~/.cargo
target
key: build-${{ runner.os }}
restore-keys: |
build-${{ runner.os }}
- name: Lint
run: cargo clippy --all-targets
- name: Test
run: cargo test