Skip to content

Commit

Permalink
run CI tests with particular Rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Apr 21, 2024
1 parent f92708f commit 31833d1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.65.0
- name: Build
run: cargo build --verbose
- name: Run tests
Expand All @@ -21,6 +22,10 @@ jobs:
run: cargo build --features uma2
- name: Run tests with UMA2
run: cargo test --verbose --features uma2
- name: Build with Microsoft feature
run: cargo build --features microsoft
- name: Run tests with Microsoft feature
run: cargo test --verbose --features uma2
- name: Build with rustls
run: cargo build --no-default-features --features rustls
- name: Run tests with rustls
Expand Down

0 comments on commit 31833d1

Please sign in to comment.