Skip to content

docs: update quicklog version in README.md #82

docs: update quicklog version in README.md

docs: update quicklog version in README.md #82

Workflow file for this run

name: Rust
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_VERSION: "1.72"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
run: rustup toolchain install --profile minimal --no-self-update $RUST_VERSION
- name: Set default toolchain
run: rustup default $RUST_VERSION
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose