Skip to content

ci

ci #149

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '00 01 * * *'
jobs:
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt
- name: Check formatting
run: |
cargo fmt --all -- --check