Release v0.15.0 #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lints | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
formatting: | |
name: Check formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get latest stable Rust | |
run: rustup toolchain install stable --profile default | |
- name: Check out source | |
uses: actions/checkout@v2 | |
- name: Check formatting | |
run: cargo fmt -v -- --check |