Skip to content

Commit

Permalink
Fix working directory for running go command in
Browse files Browse the repository at this point in the history
check-all-lint-rule-diffs.yaml
  • Loading branch information
riscait committed Nov 17, 2023
1 parent a62449d commit 21e6739
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check-all-lint-rule-diffs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:
go-version-file: './diffscrape/go.mod'
cache-dependency-path: './diffscrape/go.sum'
- name: Run go
working-directory: ./diffscrape
run: go run cmd/rules/main.go
working-directory: ./diffscrape/cmd/rules
run: |
pwd
go run main.go
- uses: technote-space/get-diff-action@v6
with:
FILES: |
Expand Down

0 comments on commit 21e6739

Please sign in to comment.