Skip to content

Create dependabot.yml #462

Create dependabot.yml

Create dependabot.yml #462

Workflow file for this run

name: GitHub Actions
on:
pull_request:
push:
branches:
- master
jobs:
setup-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: test
# run: python setup.py test
run: |
pip install -e".[test]"
tox .