Bump version number and change release readme (#77) #109
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: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
lints: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
submodules: recursive | |
- name: Rust toolchains | |
run: | | |
rustup toolchain install nightly --target x86_64-pc-windows-msvc --profile minimal -c rustfmt clippy | |
rustup default nightly | |
- name: Lints | |
run: | | |
cargo +nightly clippy -- -D warnings | |
cargo +nightly fmt --all -- --check | |