Skip to content

fix: Increase JWT key size to 2048 (#8) #1

fix: Increase JWT key size to 2048 (#8)

fix: Increase JWT key size to 2048 (#8) #1

Workflow file for this run

# Copyright Jiaqi Liu
---
name: CI/CD
"on":
pull_request:
push:
branches:
- master
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox and any other packages
run: |
pip3 install tox
python3 setup.py install
working-directory: package
- name: Run tox (test)
run: tox
working-directory: package