-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run CI tests with particular Rust version
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- name: Build | ||
run: cargo build --verbose | ||
- name: Run tests | ||
|
@@ -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 | ||
|