Skip to content

add tz pairing workflow #34

add tz pairing workflow

add tz pairing workflow #34

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install poetry
- name: Install python dependencies
run: poetry install
- name: Test
run: poetry run pytest