compact_jwt 0.5.6

Minimal implementation of JWT for OIDC and other applications
Documentation
name: "Rust Test"

# Trigger the workflow on push to master or pull request
"on":
  push:
    branches:
    - master
  pull_request:


jobs:
  rust_test:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3

    - name: Install Rust
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: stable

    - name: Cargo test
      run: cargo test

    - name: Cargo test with MS Extensions
      run: cargo test --features msextensions