Skip to content

Commit

Permalink
fix: r
Browse files Browse the repository at this point in the history
Signed-off-by: ashing <[email protected]>
  • Loading branch information
ronething committed Feb 10, 2024
1 parent 13959e8 commit 916f8c2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
run: bash scripts/codecov.sh

- name: Publish to codecov.io
run: bash <(curl -s https://codecov.io/bash)
run: bash <(curl -s https://codecov.io/bash)
16 changes: 15 additions & 1 deletion .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,18 @@ jobs:
echo "Files are not formatted by gofmt:"
echo $diffs
exit 1
fi
fi
sort-import-lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Go Environment
uses: actions/setup-go@v3
with:
go-version: "1.21.3"
- name: Sort Import Lint
run: make sort-import
- name: Check for changes
run: |
git diff --exit-code || { echo "Go imports revisions detected. Please run make sort-import and commit changes."; exit 1; }
2 changes: 1 addition & 1 deletion .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
ci
chore
revert
change
change

0 comments on commit 916f8c2

Please sign in to comment.