Skip to content

Commit

Permalink
ci(workflows): update IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
pivoshenko committed Feb 8, 2025
1 parent 4935a1e commit 1a2a255
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/.tests-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,32 @@ jobs:
pytest:
name: pytest
runs-on: ${{ inputs.runner }}
if: inputs.run-pytest
steps:
- name: Checkout repository
id: checkout
id: checkout-repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup environment
id: environment
id: setup-environment
uses: ./.github/actions/setup-environment
with:
python-version: ${{ inputs.python-version }}
poetry-version: ${{ inputs.poetry-version }}

- name: Install dependencies
id: dependencies
id: install-dependencies
uses: ./.github/actions/poetry-install
with:
args: --with tests

- name: Run tests
id: tests
id: run-tests
run: poetry run pytest

- name: Upload coverage to Codecov
id: coverage
id: upload-coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
id: checkout
id: checkout-repository
uses: actions/checkout@v4

- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
id: checkout
id: checkout-repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Dependency review
id: review
id: dependency-review
uses: actions/dependency-review-action@v4
4 changes: 2 additions & 2 deletions .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
id: checkout
id: checkout-repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Update labels
id: labeler
id: update-labels
uses: crazy-max/ghaction-github-labeler@v5
with:
github-token: ${{ secrets.GH_TOKEN }}
Expand Down

0 comments on commit 1a2a255

Please sign in to comment.