Feat: figure out infra pipeline tag trigger by experimenting #432
Workflow file for this run
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 pytests | |
on: | |
pull_request: | |
branches: ["*"] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version-file: .github/workflows/.python-version | |
- name: Install package and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[test] | |
- name: Load environment variables | |
uses: cardinalby/export-env-action@v2 | |
with: | |
envFile: .env.sample | |
- name: Test with pytest | |
run: | | |
flask init-db | |
coverage run -m pytest | |
coverage report -m |