Skip to content

Bump escargot from 0.5.7 to 0.5.8 #107

Bump escargot from 0.5.7 to 0.5.8

Bump escargot from 0.5.7 to 0.5.8 #107

Workflow file for this run

name: Check-build
on:
pull_request:
branches: [master]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "--deny warnings"
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check code formatting
run: cargo fmt -- --check
- name: Run Clippy
run: cargo clippy -- -D clippy::all