Merge pull request #232 from threema-donat/feature-improvements #233
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,ring", | |
"service_account,hyper-rustls,aws-lc-rs", | |
"service_account,hyper-tls,ring", "service_account,hyper-tls,aws-lc-rs", | |
"hyper-rustls,ring"] | |
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 |