Skip to content

Delete dependabot.yml #105

Delete dependabot.yml

Delete dependabot.yml #105

Workflow file for this run

name: Python testing
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pipenv wheel pytest
pipenv install --dev
- name: Run Tests
run: |
pipenv run pytest --record-mode=none tests/test* -vv