Skip to content

Commit 82a408b

Browse files
committed
Update GitHub Action config
- Move markdown files to .github folder
1 parent ab9948c commit 82a408b

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x]
9-
os: [ubuntu-latest, macos-latest]
8+
go-version: [1.20.x, 1.21.x, 1.22.x, 1.23.x]
9+
os: [ubuntu-24.04, macos-latest]
1010
targetplatform: [x86, x64]
1111

1212
runs-on: ${{ matrix.os }}
@@ -31,13 +31,13 @@ jobs:
3131
run: go build -v .
3232

3333
- name: Test
34-
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
34+
run: go test -v -race -coverprofile='coverage.txt' -covermode=atomic ./...
3535

3636
- name: Codecov
37-
uses: codecov/codecov-action@v4
37+
uses: codecov/codecov-action@v5
3838
env:
3939
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4040
with:
41-
file: coverage.txt
41+
files: coverage.txt
4242
flags: unittests
4343
name: codecov-umbrella

LICENSE

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

3-
Copyright (c) 2022-2024 Ri Xu All rights reserved.
3+
Copyright (c) 2022-2025 Ri Xu All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

nfp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022 - 2024 The nfp Authors. All rights reserved. Use of this
1+
// Copyright 2022 - 2025 The nfp Authors. All rights reserved. Use of this
22
// source code is governed by a BSD-style license that can be found in the
33
// LICENSE file.
44
//

nfp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022 - 2024 The nfp Authors. All rights reserved. Use of this
1+
// Copyright 2022 - 2025 The nfp Authors. All rights reserved. Use of this
22
// source code is governed by a BSD-style license that can be found in the
33
// LICENSE file.
44
//

0 commit comments

Comments
 (0)