Merge pull request #54 from bsdpot/dependabot/cargo/itertools-0.12.0 #135
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: Rust | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
clippy: | |
name: Lint with Clippy - ${{matrix.rust}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- beta | |
- nightly | |
env: | |
RUSTFLAGS: -Dwarnings | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: clippy | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- name: Header | |
run: rustc -Vv | |
- name: clippy | |
run: cargo clippy --verbose --bins | |
test-versions: | |
name: Test Rust - nightly | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hecrj/setup-rust-action@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- name: Header | |
run: rustc -Vv | |
- name: test | |
run: cargo test --verbose | |
#code-coverage: | |
#name: Generate code coverage | |
#runs-on: ubuntu-latest | |
#steps: | |
#- uses: actions/checkout@v2 | |
#- uses: actions-rs/toolchain@v1 | |
#with: | |
#toolchain: stable | |
#override: true | |
#- uses: Swatinem/rust-cache@v1 | |
#- uses: actions-rs/[email protected] | |
#with: | |
#version: '0.26.0' | |
#- name: Upload to codecov.io | |
#uses: codecov/codecov-action@v1 |