Skip to content

Version 3.6.2 (#236) #12

Version 3.6.2 (#236)

Version 3.6.2 (#236) #12

Workflow file for this run

name: Test eqalert
on: push
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11.2"
- name: Install Poetry
run: pipx install poetry=="1.7.1"
- name: Cache
uses: actions/cache@v4
with:
path: ./.venv
key: venv-dev-${{ hashFiles('poetry.lock') }}
- name: Install Playsound
run: |
poetry run pip install --upgrade pip
poetry run pip install --upgrade wheel
poetry run pip install playsound
- name: Dependencies
run: poetry install
- name: Tests
run: poetry run pytest