ci: add tests workflow #1
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 Tests | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create .env file | |
run: cat env.* > .env | |
- name: Load .env file | |
uses: xom9ikk/dotenv@v2 | |
- name: Set up Python 3.11 | |
uses: ruby/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: poetry | |
- run: poetry install | |
- name: Run tests | |
run: poetry run pytest |