Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

general tooling updates #178

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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 <[email protected]>
Dan Cropp <[email protected]>
Danil Matyukhin <[email protected]>
JAF <[email protected]>
Laurel Lawson <[email protected]>
Michael Hall <[email protected]>
Mike Zimin <[email protected]>
Nuno Pereira <[email protected]>
Raian Fernandes Dos Santos <[email protected]>
Seán C McCord <[email protected]>
Expand All @@ -17,3 +19,4 @@ mtryfoss <[email protected]>
realrainer <[email protected]>
seanchann <[email protected]>
serfreeman1337 <[email protected]>
Зимин Михаил Дмитриевич <[email protected]>
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