Merge pull request #234 from serprex/do-not-set-default-provider #223
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
on: [push, pull_request] | |
name: Actions CI | |
jobs: | |
build_and_test: | |
name: yup-oauth2 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
features: ["service_account,hyper-rustls", "service_account,hyper-tls", "service_account", "hyper-rustls"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- run: cargo test --no-default-features --features ${{ matrix.features }} | |
doc: | |
name: yup-oauth2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
- run: cargo doc --no-deps --all-features | |
env: | |
RUSTDOCFLAGS: --cfg yup_oauth2_docsrs | |
fmt: | |
name: yup-oauth2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- run: cargo fmt -- --check |