Skip to content

Bump env_logger from 0.10.0 to 0.10.2 #50

Bump env_logger from 0.10.0 to 0.10.2

Bump env_logger from 0.10.0 to 0.10.2 #50

name: build-by-branch
on:
push:
branches:
- main
- f/*
- fix/*
paths-ignore:
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "**.md"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features