Skip to content

Update Rust crate jsonwebtoken to v9 #61

Update Rust crate jsonwebtoken to v9

Update Rust crate jsonwebtoken to v9 #61

Workflow file for this run

name: ci
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose