Skip to content

Build and Format Check #182

Build and Format Check

Build and Format Check #182

Workflow file for this run

name: Build and Format Check
on:
schedule:
- cron: 0 0 * * *
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Check rustfmt
run: cargo fmt -- --check