Skip to content

Commit dfda324

Browse files
Move module to maragu.dev/is (#2)
1 parent a10f90e commit dfda324

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Setup Go
25-
uses: actions/setup-go@v3
25+
uses: actions/setup-go@v5
2626
with:
2727
go-version-file: go.mod
2828
check-latest: true
@@ -39,9 +39,15 @@ jobs:
3939

4040
steps:
4141
- 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
4349

4450
- name: Lint
45-
uses: golangci/golangci-lint-action@v2
51+
uses: golangci/golangci-lint-action@v4
4652
with:
4753
version: latest

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Maragu ApS
3+
Copyright (c) Maragu ApS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ lint:
99
.PHONY: test
1010
test:
1111
go test -coverprofile=cover.out -shuffle on ./...
12-

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# is
22

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+
36
A helper for Go tests.
47

8+
```shell
9+
go get maragu.dev/is
10+
```
11+
512
Made in 🇩🇰 by [maragu](https://www.maragu.dk/), maker of [online Go courses](https://www.golang.dk/).

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/maragudk/is
1+
module maragu.dev/is
22

33
go 1.19

is_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"io"
77
"testing"
88

9-
"github.com/maragudk/is"
9+
"maragu.dev/is"
1010
)
1111

1212
func TestNil(t *testing.T) {

0 commit comments

Comments
 (0)