Skip to content

quicklog: v0.2.1

quicklog: v0.2.1 #86

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