Merge pull request #109 from fintoc-com/release/prepare-2.16.0 #281
This file contains hidden or 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 | |
| - stable | |
| pull_request: | |
| paths: | |
| - ".github/workflows/tests.yml" | |
| - "Makefile" | |
| - "fintoc/**/*.py" | |
| - "tests/**/*.py" | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout to commit code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10.6" | |
| - name: Install Poetry | |
| run: | | |
| make get-poetry | |
| echo $HOME/.poetry/bin >> $GITHUB_PATH | |
| - name: Set up environment cache | |
| uses: actions/cache@v3 | |
| id: environment-cache | |
| with: | |
| key: environment-cache-v1-${{ hashFiles('**/poetry.lock') }} | |
| path: .venv | |
| - name: Install dependencies | |
| if: steps.poetry-cache.outputs.cache-hit != 'true' | |
| run: poetry install | |
| - name: Run Pytest | |
| run: make tests |