Add a step option for increment integer provider #57
Workflow file for this run
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: Fakelake Linter | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install clippy | |
run: rustup component add clippy | |
- name: Clipper checks | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Install fmt | |
run: rustup component add rustfmt | |
- name: fmt Checks | |
run: cargo fmt --all -- --check |