Skip to content

Commit

Permalink
Merge branch 'main' into cov
Browse files Browse the repository at this point in the history
  • Loading branch information
bmos committed Sep 6, 2024
2 parents b5e00d4 + 9a61b7c commit 0bc084a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pytest and ruff
name: Check coverage

on:
pull_request:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
cache: pip
- name: Install uv
run: |
pip install -U pip uv
pip install uv

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium

score is 4: pipCommand not pinned by hash
Click Remediation section below to solve this issue
- name: Install dependencies
run: |
uv pip install --system -e .[all]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
env:
TESTING: 1

permissions: # added using https://github.com/step-security/secure-repo
permissions: # added using https://github.com/step-security/secure-repo
contents: read

jobs:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
cache: pip
- name: Install uv
run: |
pip install -U pip uv
pip install uv

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium test

score is 4: pipCommand not pinned by hash
Click Remediation section below to solve this issue
- name: Install dependencies
env:
PARSONS_LIMITED_DEPENDENCIES: ${{ matrix.limited-dependencies }}
Expand All @@ -72,9 +72,9 @@ jobs:
uv pip install --system -r requirements-dev.txt
- name: Lint
run: |
ruff check parsons/ test/ useful_resources/
ruff check --output-format=github parsons/ test/ useful_resources/
- name: Tests
run: pytest -rf test/
run: pytest -rf
- name: Format
run: |
ruff format --check --diff parsons/ test/ useful_resources/
Expand Down

0 comments on commit 0bc084a

Please sign in to comment.