Skip to content

Merge pull request #15 from DevCraftClub/feature-KpUser-endpoint-api-… #33

Merge pull request #15 from DevCraftClub/feature-KpUser-endpoint-api-…

Merge pull request #15 from DevCraftClub/feature-KpUser-endpoint-api-… #33

Workflow file for this run

#name: Run Unit Tests
#on: [ push, pull_request ]
#jobs:
# unittest:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ macos-latest, windows-latest, ubuntu-latest ]
# python-version: [ "3.8", "3.9", "3.10", "3.11" ]
# steps:
# - name: Setup Python
# uses: actions/setup-python@master
# with:
# python-version: ${{ matrix.python-version }}
# - uses: actions/checkout@v2
# - name: Setup Poetry
# uses: abatilo/actions-poetry@v2.1.0
# with:
# poetry-version: 1.1.4
# - name: Install dependencies
# run: poetry install
# - name: Run unit tests
# run: poetry run python -m unittest