installing poetry #5
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: run-pytest | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
env: | |
CACHE_NUMBER: 0 # increase to reset cache manually | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v2 | |
with: | |
path: /usr/share/miniconda/envs/earthlib | |
key: env-${{ hashFiles('poetry.lock', 'pyproject.toml') }}-${{ env.CACHE_NUMBER }} | |
id: cache | |
- name: Install package | |
run: | | |
pip install pipx | |
pipx ensurepath | |
pipx install poetry==1.2.0 | |
make create | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Run pytest | |
run: | | |
make test |