Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/go.yml → .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ name: Go

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.23.3

- name: lint
uses: golangci/golangci-lint-action@v3.7.0
uses: golangci/golangci-lint-action@v6.5.0
with:
args: ./...

Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
0perl <444065+0perl@users.noreply.github.com>
Dan Cropp <58079560+daninmadison@users.noreply.github.com>
Danil Matyukhin <postrg@gmail.com>
JAF <baldrailers@gmail.com>
Laurel Lawson <llawson@gmail.com>
Michael Hall <mikehall492@gmail.com>
Mike Zimin <mikeziminio@gmail.com>
Nuno Pereira <nunoafonso2002@gmail.com>
Raian Fernandes Dos Santos <raianfs@gmail.com>
Seán C McCord <ulexus@gmail.com>
Expand All @@ -17,3 +19,4 @@ mtryfoss <morten@tryfoss.no>
realrainer <18657361+realrainer@users.noreply.github.com>
seanchann <seanchann.zhou@gmail.com>
serfreeman1337 <serfreeman1337@gmail.com>
Зимин Михаил Дмитриевич <mdzimin@domclick.ru>
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@
sha256 = "sha256-/YR61lovuYw+GEeXIgvyPbesz2epmQVmSLWjWwKT4Ag=";
};

# Switch to fake vendor sha for upgrades:
#vendorSha256 = pkgs.lib.fakeSha256;
vendorSha256 = "sha256-g7htGfU6C2rzfu8hAn6SGr0ZRwB8ZzSf9CgHYmdupE8=";
vendorHash = "sha256-g7htGfU6C2rzfu8hAn6SGr0ZRwB8ZzSf9CgHYmdupE8=";
};

cclint = pkgs.writeScriptBin "lint" ''
Expand Down
Loading