Skip to content

Commit

Permalink
Only check library target against MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
djc authored and chris-laplante committed May 28, 2023
1 parent 9deb9eb commit 577a345
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
- os: ubuntu-latest
rust: beta
features: --all-features
- os: ubuntu-latest
rust: 1.58
features: --features improved_unicode
- os: ubuntu-latest
rust: stable
features: --all-features
Expand Down Expand Up @@ -66,6 +63,20 @@ jobs:
command: test
args: --workspace ${{ matrix.features }} ${{ matrix.target }}

msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.58"
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --lib --all-features

lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 577a345

Please sign in to comment.