Skip to content

Add openid jwt claims #38

Add openid jwt claims

Add openid jwt claims #38

Workflow file for this run

name: Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
roadster_each_feature:
name: Each feature
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cargo-hack
- name: Test
run: cargo hack test --no-fail-fast --each-feature --workspace
- name: Check
run: cargo hack check --each-feature --no-dev-deps --workspace
- name: Clippy
run: cargo hack clippy --workspace --all-targets --each-feature -- -D warnings
roadster_all_features:
name: All features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test --no-fail-fast --all-features --workspace
- name: Check
run: cargo check --all-features --workspace
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
check_formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Formatting
run: cargo fmt --all --check
check_docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docs
env:
RUSTDOCFLAGS: "-D rustdoc::all"
run: cargo doc --all-features --no-deps