Skip to content
Closed
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
uses: actions/checkout@v5

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v9.0.0

Check failure on line 20 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=egvimo_pwm-fan-control&issues=AZ-GfOf8uGNGh1a--3mE&open=AZ-GfOf8uGNGh1a--3mE&pullRequest=38

- name: Set up Python
run: uv python install

- name: Install dependencies
run: uv sync --frozen

Check warning on line 26 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--no-build" can lead to the execution of setup scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=egvimo_pwm-fan-control&issues=AZ-GfOf8uGNGh1a--3mF&open=AZ-GfOf8uGNGh1a--3mF&pullRequest=38

- name: Lint
run: uv run ruff check

Check warning on line 29 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--no-build" can lead to the execution of setup scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=egvimo_pwm-fan-control&issues=AZ-GfOf8uGNGh1a--3mG&open=AZ-GfOf8uGNGh1a--3mG&pullRequest=38

Check warning on line 29 in .github/workflows/build.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=egvimo_pwm-fan-control&issues=AZ-GfOf8uGNGh1a--3mH&open=AZ-GfOf8uGNGh1a--3mH&pullRequest=38

- name: Test
run: uv run pytest

Check warning on line 32 in .github/workflows/build.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=egvimo_pwm-fan-control&issues=AZ-GfOf8uGNGh1a--3mJ&open=AZ-GfOf8uGNGh1a--3mJ&pullRequest=38

Check warning on line 32 in .github/workflows/build.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--no-build" can lead to the execution of setup scripts. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=egvimo_pwm-fan-control&issues=AZ-GfOf8uGNGh1a--3mI&open=AZ-GfOf8uGNGh1a--3mI&pullRequest=38

build:
name: Build
Expand Down
Loading