Skip to content

updated env_logger

updated env_logger #13

Workflow file for this run

name: Rust CI
on:
pull_request:
branches: [ "master", "dev" ]
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
matrix:
rust: [ stable, nightly ]
steps:
- uses: actions/checkout@master
- name: "Setting up Rust toolchain"
- uses: rust-build/[email protected]
- name: "Compiling and testing"
- run: cargo check
- run: cargo test