Skip to content

Commit

Permalink
Update GitHub Action config
Browse files Browse the repository at this point in the history
- Move markdown files to .github folder
  • Loading branch information
xuri committed Jan 11, 2025
1 parent ab9948c commit 82a408b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
test:
strategy:
matrix:
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]
os: [ubuntu-latest, macos-latest]
go-version: [1.20.x, 1.21.x, 1.22.x, 1.23.x]
os: [ubuntu-24.04, macos-latest]
targetplatform: [x86, x64]

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

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

- name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: coverage.txt
files: coverage.txt
flags: unittests
name: codecov-umbrella
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

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

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion nfp.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022 - 2024 The nfp Authors. All rights reserved. Use of this
// Copyright 2022 - 2025 The nfp Authors. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
//
Expand Down
2 changes: 1 addition & 1 deletion nfp_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022 - 2024 The nfp Authors. All rights reserved. Use of this
// Copyright 2022 - 2025 The nfp Authors. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
//
Expand Down

0 comments on commit 82a408b

Please sign in to comment.