Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 30 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwJ&open=AZ3wq8ZM1cGPJwranuwJ&pullRequest=108
pip install flake8 coverage unittest-xml-reporting

Check warning on line 31 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwL&open=AZ3wq8ZM1cGPJwranuwL&pullRequest=108

Check warning on line 31 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--only-binary :all:" can lead to the execution of setup scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwK&open=AZ3wq8ZM1cGPJwranuwK&pullRequest=108
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

Check warning on line 32 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwN&open=AZ3wq8ZM1cGPJwranuwN&pullRequest=108

Check warning on line 32 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--only-binary :all:" can lead to the execution of setup scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwM&open=AZ3wq8ZM1cGPJwranuwM&pullRequest=108
pip install -e .

Check warning on line 33 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwP&open=AZ3wq8ZM1cGPJwranuwP&pullRequest=108

Check warning on line 33 in .github/workflows/python-app.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--only-binary :all:" can lead to the execution of setup scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=Teester_entityshape&issues=AZ3wq8ZM1cGPJwranuwO&open=AZ3wq8ZM1cGPJwranuwO&pullRequest=108
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -45,7 +45,7 @@
coverage run -m xmlrunner
coverage xml
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@v7.0.0
uses: SonarSource/sonarqube-scan-action@v8.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down
Loading