Skip to content

Pure bash killport

Pure bash killport #2

Workflow file for this run

name: Rustfmt
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check_rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check code formatting
run: cargo fmt --all -- --check