Delete Jenkinsfile #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |