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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 24 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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aR&open=AZ-CRMsiqEYWq4bgg0aR&pullRequest=254
pip install -e '.[dev]'

Check warning on line 25 in .github/workflows/ci.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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aS&open=AZ-CRMsiqEYWq4bgg0aS&pullRequest=254

Check warning on line 25 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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aT&open=AZ-CRMsiqEYWq4bgg0aT&pullRequest=254
- name: Test with pytest
run: |
py.test --cov-report xml --cov-report term --cov=configue ./tests
Expand All @@ -42,13 +42,13 @@
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 50 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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aU&open=AZ-CRMsiqEYWq4bgg0aU&pullRequest=254
pip install -e '.[dev]'

Check warning on line 51 in .github/workflows/ci.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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aV&open=AZ-CRMsiqEYWq4bgg0aV&pullRequest=254

Check warning on line 51 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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aW&open=AZ-CRMsiqEYWq4bgg0aW&pullRequest=254
- name: Lint with black
run: black . --check -l 120
- name: Lint with mypy
Expand All @@ -66,13 +66,13 @@
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 74 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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aX&open=AZ-CRMsiqEYWq4bgg0aX&pullRequest=254
pip install -e '.[dev]'

Check warning on line 75 in .github/workflows/ci.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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aY&open=AZ-CRMsiqEYWq4bgg0aY&pullRequest=254

Check warning on line 75 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=illuin-tech_configue&issues=AZ-CRMsiqEYWq4bgg0aZ&open=AZ-CRMsiqEYWq4bgg0aZ&pullRequest=254
- name: Build and publish
env:
TWINE_USERNAME: __token__
Expand Down