Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

fix(diagnostics): run upon change, with a hack for throttling #28

fix(diagnostics): run upon change, with a hack for throttling

fix(diagnostics): run upon change, with a hack for throttling #28

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all-features --all-targets --workspace
- name: Run formatter
run: cargo fmt -- --check
- name: Run linter
run: cargo clippy --all-features --all-targets --workspace
- name: Run tests
run: cargo test --all-features --all-targets --workspace