Merge pull request #23 from daniel-dona/master #30
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.7] | |
hdt-version: ['v1.3.3'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} 🐍 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup pipenv | |
uses: dschep/install-pipenv-action@v1 | |
- name: Cache pipenv dependencies | |
uses: actions/cache@v2 | |
id: cache-pipenv | |
with: | |
path: ~/.local/share/virtualenvs | |
key: ${{ runner.os }}-${{ matrix.python-version }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} | |
- name: Setup HDT ${{ matrix.hdt-version }} | |
uses: Callidon/setup-hdt-action@v1.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
hdt-tag: ${{ matrix.hdt-version }} | |
source-path: ./ | |
- name: Install dependencies | |
if: steps.cache-pipenv.outputs.cache-hit != 'true' | |
run: pipenv install --dev | |
- name: Compile & install package | |
run: pipenv run python setup.py install | |
- name: Test with pytest | |
run: pipenv run pytest |