Skip to content

update(.github/tests): add github actions, delete unit tests dir from… #1

update(.github/tests): add github actions, delete unit tests dir from…

update(.github/tests): add github actions, delete unit tests dir from… #1

Workflow file for this run

name: Run tests
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Test with pytest
run: |
pytest