Skip to content

Merge pull request #9 from FAIRChemistry/7-two-minor-bugs-in-list-types #86

Merge pull request #9 from FAIRChemistry/7-two-minor-bugs-in-list-types

Merge pull request #9 from FAIRChemistry/7-two-minor-bugs-in-list-types #86

Workflow file for this run

name: Rust Format Check
on:
push:
paths:
- "src/**"
- "tests/**"
- "Cargo.toml"
- "Cargo.lock"
- "templates/**"
- "types/**"
pull_request:
paths:
- "src/**"
- "tests/**"
- "Cargo.toml"
- "Cargo.lock"
- "templates/**"
- "types/**"
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Run rustfmt
run: cargo fmt -- --check