File tree Expand file tree Collapse file tree 6 files changed +20
-8
lines changed Expand file tree Collapse file tree 6 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
24
24
- name : Setup Go
25
- uses : actions/setup-go@v3
25
+ uses : actions/setup-go@v5
26
26
with :
27
27
go-version-file : go.mod
28
28
check-latest : true
39
39
40
40
steps :
41
41
- name : Checkout
42
- uses : actions/checkout@v3
42
+ uses : actions/checkout@v4
43
+
44
+ - name : Setup Go
45
+ uses : actions/setup-go@v5
46
+ with :
47
+ go-version-file : go.mod
48
+ check-latest : true
43
49
44
50
- name : Lint
45
- uses : golangci/golangci-lint-action@v2
51
+ uses : golangci/golangci-lint-action@v4
46
52
with :
47
53
version : latest
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2022 Maragu ApS
3
+ Copyright (c) Maragu ApS
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 9
9
.PHONY : test
10
10
test :
11
11
go test -coverprofile=cover.out -shuffle on ./...
12
-
Original file line number Diff line number Diff line change 1
1
# is
2
2
3
+ [ ![ GoDoc] ( https://pkg.go.dev/badge/maragu.dev/is )] ( https://pkg.go.dev/maragu.dev/is )
4
+ [ ![ Go] ( https://github.com/maragudk/is/actions/workflows/ci.yml/badge.svg )] ( https://github.com/maragudk/is/actions/workflows/ci.yml )
5
+
3
6
A helper for Go tests.
4
7
8
+ ``` shell
9
+ go get maragu.dev/is
10
+ ```
11
+
5
12
Made in 🇩🇰 by [ maragu] ( https://www.maragu.dk/ ) , maker of [ online Go courses] ( https://www.golang.dk/ ) .
Original file line number Diff line number Diff line change 1
- module github.com/maragudk /is
1
+ module maragu.dev /is
2
2
3
3
go 1.19
Original file line number Diff line number Diff line change 6
6
"io"
7
7
"testing"
8
8
9
- "github.com/maragudk /is"
9
+ "maragu.dev /is"
10
10
)
11
11
12
12
func TestNil (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments