feat: Add loading by python-dotenv #22
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: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
paths-ignore: | |
- 'shopyo/sphinx_src/**' | |
- '*.md' | |
- '*.rst' | |
jobs: | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# - {name: Windows, python: '3.9', os: windows-latest, tox: py39} | |
# - {name: Mac, python: '3.9', os: macos-latest, tox: py39} | |
- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39} | |
# - {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38} | |
# - {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: update pip | |
run: | | |
pip install -U wheel | |
pip install -U setuptools | |
python -m pip install -U pip | |
- name: install requirements | |
run: | | |
python -m pip install pytest pytest-coverage coverage | |
python -m pip install . | |
- name: get pip cache dir | |
id: pip-cache | |
run: echo "::set-output name=dir::$(pip cache dir)" | |
- name: cache pip | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.pip-cache.outputs.dir }} | |
key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('requirements/*.txt') }}|${{ hashFiles('requirements.txt') }} | |
- run: pip install tox codecov | |
- run: tox -e py | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 |