Skip to content

Remove python 3.6 and 3.7 from build matrix #113

Remove python 3.6 and 3.7 from build matrix

Remove python 3.6 and 3.7 from build matrix #113

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- name: Checkout 🚚
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies ⚙️
run: |
python -m pip install -U pip
pip install -U -e .
- name: Test 🔧
run: |
python setup.py test