fix some clippy warnings, use PhantomData
for the lifetime marker in Iter and IterMut
#62
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: Rust | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- nightly-2022-08-11 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use ${{ matrix.rust }} | |
run: rustup default ${{ matrix.rust }} | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose |