Skip to content

Update Rust crate env_logger to 0.10.0 (#304) #358

Update Rust crate env_logger to 0.10.0 (#304)

Update Rust crate env_logger to 0.10.0 (#304) #358

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
rust: [stable]
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Build and test
run: |
cargo build --verbose
cargo test --verbose