Skip to content

chore: add unit and integration test checks #6

chore: add unit and integration test checks

chore: add unit and integration test checks #6

Workflow file for this run

name: Open Prices unit and integration tests
on:
push:
paths:
- "**/app/**"
- "pyproject.toml"
- "poetry.lock"
- "tests/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
steps:
#----------------------------------------------
# check-out repo
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3
#----------------------------------------------
# Launch checks and tests
#----------------------------------------------
- name: Configure docker
run: |
# ensure a new line for .env file might not have it!
echo "" >> .env
# align user id
echo "USER_UID=$UID" >> .env
echo "PYTHON_VERSION=${{ matrix.python-version }}" >> .env
echo "User ID: $UID" # debug
echo `docker-compose --env-file .env run --rm api echo $UID` # debug
echo `docker-compose --env-file .env run --rm api ls -lha static/` # debug
- name: Launch tests
run: make tests
#----------------------------------------------
# Upload test coverage
#----------------------------------------------
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
directory: .cov
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# dev:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository
# uses: actions/checkout@v3
# - name: Run developer workflow
# run: make dev