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=AZ5c31HBcVnEFZITh34O&open=AZ5c31HBcVnEFZITh34O&pullRequest=110
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=AZ5c31HBcVnEFZITh34Q&open=AZ5c31HBcVnEFZITh34Q&pullRequest=110

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=AZ5c31HBcVnEFZITh34P&open=AZ5c31HBcVnEFZITh34P&pullRequest=110
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

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=AZ5c31HBcVnEFZITh34R&open=AZ5c31HBcVnEFZITh34R&pullRequest=110

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=AZ5c31HBcVnEFZITh34S&open=AZ5c31HBcVnEFZITh34S&pullRequest=110
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=AZ5c31HBcVnEFZITh34U&open=AZ5c31HBcVnEFZITh34U&pullRequest=110

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=AZ5c31HBcVnEFZITh34T&open=AZ5c31HBcVnEFZITh34T&pullRequest=110
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -50,7 +50,7 @@
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.5.2
uses: codecov/codecov-action@v6.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Teester/entityshape
Expand Down
Loading