Skip to content

Commit 6684256

Browse files
committed
Require Go 1.16+
1 parent df1d010 commit 6684256

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
- macOS
1212
- Windows
1313
go-version:
14-
- 1.15
1514
- 1.16
1615
- 1.17
16+
- 1.18
1717
include:
1818
- platform: Linux
1919
os: ubuntu-latest
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
go-version: ${{ matrix.go-version }}
3535
- name: Test
36-
run: go test -v -race -covermode atomic -coverprofile coverage.txt ./...
36+
run: go test -v -race -coverprofile coverage.txt ./...
3737
- name: Vet
3838
run: go vet ./...
3939
- name: Upload coverage to Codecov

Asterfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ aster.title(title);
1010
// go
1111
aster.watch(/.+\.go$/, function() {
1212
go.mod.tidy();
13-
if (go.test('-v', '-race', '-covermode', 'atomic', '-coverprofile', 'cover.out')) return;
13+
if (go.test('-v', '-race', '-coverprofile', 'cover.out')) return;
1414
go.tool.cover('-func', 'cover.out');
1515
go.tool.cover('-html', 'cover.out', '-o', 'coverage.html');
1616
if (go.vet()) return;

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2021 Akinori Hattori <[email protected]>
1+
Copyright (c) 2014-2022 Akinori Hattori <[email protected]>
22

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

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/hattya/go.diff
22

3-
go 1.15
3+
go 1.16

0 commit comments

Comments
 (0)