Skip to content

Commit

Permalink
try without excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Aug 27, 2024
1 parent d7a5e37 commit 41bc141
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/seth-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,15 @@ jobs:
working-directory: seth
- name: Print lint report artifact
if: always()
run: test -f seth/}golangci-lint-report.xml || true
working-directory: seth
shell: bash
run: |
if test -f golangci-lint-report.xml; then
cat golangci-lint-report.xml
else
echo "No golangci-lint-report.xml file found"
fi
- name: Store lint report artifact
if: always()
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
Expand Down
6 changes: 1 addition & 5 deletions seth/.golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,4 @@ linters-settings:
- name: confusing-results
- name: bool-literal-in-expr
- name: atomic
issues:
exclude-dirs:
- contracts/*
- examples/*
- examples_wasp/*

0 comments on commit 41bc141

Please sign in to comment.