Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -56,7 +56,7 @@
enable-cache: true

- name: Install dependencies
run: uv pip install --system -e ".[dev]"

Check warning on line 59 in .github/workflows/ci.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--no-build" or "--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=calebevans_cordon&issues=AZ-AECLb9RJath4CAt5Q&open=AZ-AECLb9RJath4CAt5Q&pullRequest=45

Check warning on line 59 in .github/workflows/ci.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=calebevans_cordon&issues=AZ-AECLb9RJath4CAt5R&open=AZ-AECLb9RJath4CAt5R&pullRequest=45

- name: Run tests with coverage
env:
Expand All @@ -77,10 +77,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand All @@ -90,7 +90,7 @@
enable-cache: true

- name: Install dependencies
run: uv pip install --system -e ".[dev]"

Check warning on line 93 in .github/workflows/ci.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=calebevans_cordon&issues=AZ-AECLb9RJath4CAt5T&open=AZ-AECLb9RJath4CAt5T&pullRequest=45

Check warning on line 93 in .github/workflows/ci.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--no-build" or "--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=calebevans_cordon&issues=AZ-AECLb9RJath4CAt5S&open=AZ-AECLb9RJath4CAt5S&pullRequest=45

- name: Run pre-commit
run: pre-commit run --all-files
Expand All @@ -102,7 +102,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down Expand Up @@ -136,7 +136,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand All @@ -28,7 +28,7 @@
enable-cache: true

- name: Install build tools
run: uv pip install --system build

Check warning on line 31 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--no-build" or "--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=calebevans_cordon&issues=AZ-AECOP9RJath4CAt5U&open=AZ-AECOP9RJath4CAt5U&pullRequest=45

Check warning on line 31 in .github/workflows/release.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=calebevans_cordon&issues=AZ-AECOP9RJath4CAt5V&open=AZ-AECOP9RJath4CAt5V&pullRequest=45

- name: Build distributions
run: python -m build
Expand Down Expand Up @@ -77,7 +77,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down
Loading