AMB-2307:500 list out of range #68
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: SonarCloud | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [labeled, opened, synchronize, reopened, unlabeled] | |
jobs: | |
sonarcloud: | |
name: SonarCloud | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependency') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run unittest with coverage-delta | |
run: | | |
pip install poetry mypy-boto3-dynamodb==1.35.54 boto3==1.26.165 coverage botocore==1.29.165 jmespath==1.0.1 python-dateutil==2.9.0 urllib3==1.26.20 s3transfer==0.6.2 typing-extensions==4.12.2 | |
poetry run coverage run --source=delta_backend -m unittest discover -s delta_backend | |
poetry run coverage xml -o sonarcloud-coverage-delta.xml | |
- name: Run unittest with coverage | |
run: | | |
pip install poetry moto==4.2.11 coverage botocore==1.35.49 simplejson responses structlog fhir.resources jsonpath_ng pydantic==1.10.13 requests aws-lambda-typing cffi pyjwt boto3-stubs-lite[dynamodb]~=1.26.90 | |
poetry run coverage run --source=backend -m unittest discover -s backend | |
poetry run coverage xml -o sonarcloud-coverage.xml | |
- 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 }} |