Skip to content

Commit

Permalink
exclude . for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcavazos committed Sep 10, 2024
1 parent 8f164a9 commit 138dee3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ^1.22.0
- run: go version
- run: go install github.com/davidcavazos/testing-infra/cmd/[email protected]
- run: go install github.com/davidcavazos/testing-infra/cmd/[email protected]
- id: python
run: |
JOBS=$(affected .github/workflows/config/python.json)
Expand All @@ -51,8 +50,10 @@ jobs:
strategy:
matrix:
affected: ${{ fromJson(needs.affected.outputs.python) }}
exclude:
- package: "."
env:
PACKAGE: ${{ toJson(matrix.affected.package) }}
PACKAGE: ${{ matrix.affected.package }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down

0 comments on commit 138dee3

Please sign in to comment.