Skip to content

Commit

Permalink
Merge pull request #48 from sagikazarmark/go123
Browse files Browse the repository at this point in the history
ci: add Go 1.23
  • Loading branch information
sagikazarmark authored Sep 10, 2024
2 parents ae2793f + 2d854fb commit b491c68
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ["1.20", "1.21", "1.22"]
go: ["1.20", "1.21", "1.22", "1.23"]

steps:
- name: Checkout repository
Expand Down
26 changes: 13 additions & 13 deletions flake.lock

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

17 changes: 17 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
default = {
languages = {
go.enable = true;
go.package = pkgs.lib.mkDefault pkgs.go_1_23;
};

packages = with pkgs; [
Expand All @@ -41,6 +42,22 @@
go.package = pkgs.go_1_21;
};
};

ci_1_22 = {
imports = [ devenv.shells.ci ];

languages = {
go.package = pkgs.go_1_22;
};
};

ci_1_23 = {
imports = [ devenv.shells.ci ];

languages = {
go.package = pkgs.go_1_23;
};
};
};
};
};
Expand Down

0 comments on commit b491c68

Please sign in to comment.