Skip to content

tests: improve just watch #138

tests: improve just watch

tests: improve just watch #138

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
all:
name: All
runs-on: ubuntu-latest
env:
RUSTFLAGS: "--deny warnings"
defaults:
run:
working-directory: tests
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain Components
run: |
rustup component add clippy rustfmt
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install colordiff
- name: Info
run: |
rustup --version
cargo --version
cargo clippy --version
cargo fmt --version
- uses: Swatinem/rust-cache@d30f1144e884b1fe579845ed7a339c640dff522e
with:
workspaces: ./tests -> target
- name: Build
run: cargo build --workspace
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Check Formatting
run: cargo fmt --all -- --check
- name: Test
run: |
cargo run
cargo run --bin=test-ftdetect