Skip to content

Add Token property to Verify Object #37

Add Token property to Verify Object

Add Token property to Verify Object #37

Workflow file for this run

name: Python package
on:
pull_request:
push:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy-2.7 and pypy-3.8
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: install deps
run: python setup.py install
- name: install dev deps
run: pip install pytest
- name: test
run: python -m unittest