Skip to content

Merge pull request #108 from getindata/remove-build-docker-image-step #323

Merge pull request #108 from getindata/remove-build-docker-image-step

Merge pull request #108 from getindata/remove-build-docker-image-step #323

name: Tests
on:
push:
branches:
- main
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Setup virtualenv
run: |
python -V
python -m pip install virtualenv pipdeptree
virtualenv venv
source venv/bin/activate
pip install --upgrade pip
- name: Test pre-commit hooks
run: |
pip install .[tests]
pip freeze
pipdeptree
pre-commit run --all-files
- name: Test with tox
run: |
tox -e py
- name: Wheel
run: |
python setup.py sdist