Update dependencies versions #97
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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: Rust ${{matrix.rust}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dtolnay/[email protected] | |
with: | |
components: clippy, rustfmt | |
- name: Print rust version | |
run: rustup show | |
- name: Print clippy version | |
run: cargo clippy --version | |
- name: Lint | |
run: make lint | |
- name: Run tests | |
run: make test |