Refactors Services and Initial Test Implementation
This commit is contained in:
27
.github/workflows/run-tests.yml
vendored
Normal file
27
.github/workflows/run-tests.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push
|
||||
|
||||
jobs:
|
||||
|
||||
run-tests:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install poetry
|
||||
poetry install
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
poetry run python -m unittest
|
||||
Reference in New Issue
Block a user