Skip to content

Build Fix: Version 3.6 with arch x64 not found (#8) #59

Build Fix: Version 3.6 with arch x64 not found (#8)

Build Fix: Version 3.6 with arch x64 not found (#8) #59

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run pylint
uses: cclauss/GitHub-Action-for-pylint@0.7.0
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pytest
pip install -r requirements.txt
- name: Test with pytest
run: pytest