Skip to content

Commit

Permalink
build: golangci-lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jufemaiz committed Nov 26, 2024
1 parent 3b71963 commit cf27720
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,18 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: 'actions/checkout@v2'
- uses: 'actions/setup-go@v5'
with:
go-version: stable
- name: ⚙️ Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y
sudo apt-get install libbtrfs-dev -y
sudo apt-get install libgpgme-dev -y
go mod tidy
- name: 'golangci-lint'
uses: 'golangci/golangci-lint-action@v2'
uses: 'golangci/golangci-lint-action@v6'
with:
# Optional: 'version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version'
version: 'v1.59'
Expand Down

0 comments on commit cf27720

Please sign in to comment.