Skip to content

Update lint.yaml. Python switched to 3.8 #52

Update lint.yaml. Python switched to 3.8

Update lint.yaml. Python switched to 3.8 #52

Workflow file for this run

name: Test
on:
push:
branches:
- main
- 'dev-**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover tests