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
# this action tests that minimal possible semver versions are correct, | |
# if it fails, there's probably minimal dependency version needs to be bumped | |
name: minimal-dep-check-ignore-this | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- nightly | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
- run: cargo +nightly -Z minimal-versions update && cargo +nightly test --no-default-features --features linkify |