Skip to content
Snippets Groups Projects
Commit 88c1525f authored by Thomas Reifenberger's avatar Thomas Reifenberger
Browse files

Add github actions setup

parent 811bdf06
Branches
Tags
No related merge requests found
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py
[tox]
envlist = py27, py33, py34, py35, py36, py37, py38
envlist = py27, py36, py37, py38
[testenv]
deps =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment