Skip to content

Commit

Permalink
set minimum Go version to 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Southclaws committed Nov 20, 2022
1 parent e9f4c84 commit 873e235
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
go 1.19
go 1.18

// Q: Why is this file here?
//
//
// A: The tests aren't just a separate package, but a separate module. This will
// keep test-specific dependencies out of the dependency chain and also makes it
// so `go test ./...` from the root works. This usage isn't well defined though.

use .
use ./tests

use ./tests
2 changes: 1 addition & 1 deletion tests/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Southclaws/fault/tests

go 1.19
go 1.18

require (
github.com/Southclaws/fault v0.4.1
Expand Down

0 comments on commit 873e235

Please sign in to comment.