dpaste/.github/workflows/building.yml
Darren dbc3b691a9
Rename python-validations.yml to building.yml
Use github actions instead of travis.ci
2021-12-28 05:36:42 -05:00

25 lines
564 B
YAML

name: Python Check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- 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
pip install tox-travis coverage codacy-coverage
- name: Test with tox
run: |
tox