Skip to content

Commit

Permalink
bump go to 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tateexon committed Aug 20, 2024
1 parent 1a2a80d commit 8f49eb0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/go-change-delta
unit-test-coverage.out
.direnv
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ linters-settings:
- name: atomic
issues:
exclude-dirs:
- examples
- .*/nix/store/.*
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
golang 1.22.5
golangci-lint 1.59.1
golang 1.23.0
golangci-lint 1.60.1
typos 1.23.3
shfmt 3.8.0
shellcheck 0.10.0
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# WIP

# go-change-delta

go-change-delta is a tool to detect the blast radius of changes in a Go-based repository. It helps you identify which packages are affected by changes in your codebase, enabling more focused and efficient testing.
Expand Down Expand Up @@ -77,8 +75,3 @@ jobs:
## Contributing
Contributions are welcome! Feel free to open an issue or submit a pull request.
# TODO:
- Setup and add CI
- Add a github action to make using this easier in other CIs
6 changes: 3 additions & 3 deletions flake.lock

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

2 changes: 1 addition & 1 deletion nix/ci-runtests.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ pkgs, scriptDir }:
with pkgs;
let
go = pkgs.go_1_22;
go = pkgs.go_1_23;
in
mkShell {
nativeBuildInputs = [
Expand Down
2 changes: 1 addition & 1 deletion nix/devshell.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ pkgs, scriptDir }:
with pkgs;
let
go = pkgs.go_1_22;
go = pkgs.go_1_23;
in
mkShell {
nativeBuildInputs = [
Expand Down

0 comments on commit 8f49eb0

Please sign in to comment.