workaround: set minimum sqlx dot-dot to get rid of deps.rs notice #33
This file contains hidden or 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: MSRV | |
| on: | |
| push: | |
| branches: [] | |
| pull_request: | |
| branches: [] | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| all: | |
| name: All | |
| strategy: | |
| matrix: | |
| target: | |
| - x86_64-unknown-linux-gnu | |
| - aarch64-apple-darwin | |
| include: | |
| - target: x86_64-unknown-linux-gnu | |
| os: ubuntu-latest | |
| - target: aarch64-apple-darwin | |
| os: macos-latest | |
| runs-on: ${{matrix.os}} | |
| env: | |
| RUSTFLAGS: "-D warnings" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: ${{ matrix.target }} | |
| - uses: taiki-e/install-action@v2 | |
| with: | |
| tool: cargo-msrv | |
| - name: Info | |
| run: | | |
| rustup --version | |
| cargo --version | |
| cargo clippy --version | |
| - name: MSRV | |
| run: | | |
| cargo msrv --path adbyss_psl verify -- cargo check --all-features |