Skip to content

Delete Jenkinsfile

Delete Jenkinsfile #39

name: Run pytest
on: [push]
jobs:
build:
name: ${{matrix.os}} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
# If anybody figures out how to setup the other relevant OSs, we should
# test against them: [MacOS, Ubuntu, Windows]
os: [Ubuntu]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
pipenv install --dev
- name: Test with pytest
run: |
pipenv run pytest