Merge pull request #15 from DevCraftClub/feature-KpUser-endpoint-api-… #33
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 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/[email protected] | |
# with: | |
# poetry-version: 1.1.4 | |
# - name: Install dependencies | |
# run: poetry install | |
# - name: Run unit tests | |
# run: poetry run python -m unittest |