Skip to content

Update README.md

Update README.md #246

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup toolchain install stable --profile minimal --component clippy
- name: Install tmux (runtime prerequisite for some integration tests)
run: sudo apt-get update && sudo apt-get install -y tmux
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test --verbose