Skip to content

Merge pull request #8 from aokellermann/dependabot/cargo/rustix-0.37.25 #34

Merge pull request #8 from aokellermann/dependabot/cargo/rustix-0.37.25

Merge pull request #8 from aokellermann/dependabot/cargo/rustix-0.37.25 #34

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: format check
run: cargo fmt --check --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: clippy
run: cargo clippy
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build release
run: cargo build --release --verbose