Merge pull request #108 from getindata/remove-build-docker-image-step #323
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |