Skip to content

set ubuntu to 20.04 to make tests run with python3.6 #23

set ubuntu to 20.04 to make tests run with python3.6

set ubuntu to 20.04 to make tests run with python3.6 #23

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
requirements.txt
test_requirements.txt
- name: Install dependencies
run: make init
- name: Test
run: make test