Skip to content

Merge branch 'main' of https://github.com/Im-Rises/space-invaders-arc… #111

Merge branch 'main' of https://github.com/Im-Rises/space-invaders-arc…

Merge branch 'main' of https://github.com/Im-Rises/space-invaders-arc… #111

Workflow file for this run

# https://github.com/Rust-SDL2/rust-sdl2/blob/master/.github/workflows/fmt.yml
name: rustfmt check
on:
pull_request:
push:
branches:
- main
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check