Skip to content

Commit

Permalink
Merge branch 'main' into introduce-m1-macos
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Feb 5, 2024
2 parents 6b78275 + 1ca9fe3 commit a24fee4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x

- name: Set up Go
uses: actions/setup-go@v5
Expand Down
26 changes: 13 additions & 13 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: 'actions-goveralls'
description: 'Coveralls GitHub Action with Go integration powered by mattn/goveralls'
author: 'ICHINOSE Shogo'
name: "actions-goveralls"
description: "Coveralls GitHub Action with Go integration powered by mattn/goveralls"
author: "ICHINOSE Shogo"
inputs:
github-token:
description: Coveralls uses this token to verify the posted coverage data on the repo and create a new check based on the results.
required: true
default: '${{ github.token }}'
default: "${{ github.token }}"
path-to-profile:
description: a path to your cover profile.
required: false
default: ''
default: ""
parallel:
description: 'Set to true if you are running parallel jobs, then use "parallel_finished: true" for the last action.'
required: false
Expand All @@ -21,29 +21,29 @@ inputs:
job-number:
description: "job number (DEPRECATED)"
required: false
default: '${{ strategy.job-index }}'
default: "${{ strategy.job-index }}"
deprecationMessage: "use flag-name instead"
flag-name:
description: 'Job flag name, e.g. "Unit", "Functional", or "Integration". Will be shown in the Coveralls UI.'
required: false
default: '${{ strategy.job-index }}'
default: "${{ strategy.job-index }}"
working-directory:
description: "working directory"
required: false
default: '.'
default: "."
ignore:
description: Comma separated files to ignore
required: false
default: ''
default: ""
shallow:
description: Shallow coveralls internal server errors
required: false
default: false

runs:
using: 'node16'
main: 'lib/main.js'
using: "node20"
main: "lib/main.js"

branding:
color: 'green'
icon: 'percent'
color: "green"
icon: "percent"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/shogo82148/actions-goveralls

go 1.20
go 1.21.6

require github.com/mattn/goveralls v0.0.12

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion run-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ docker run --rm \
-v actions-goveralls-cache:/go/pkg/mod \
-v actions-goveralls-cache:/root/.cache \
-v "$CURRENT":/go/src/github.com/shogo82148/actions-goveralls \
-w /go/src/github.com/shogo82148/actions-goveralls golang:1.21.0 "$@"
-w /go/src/github.com/shogo82148/actions-goveralls golang:1.21.6 "$@"

0 comments on commit a24fee4

Please sign in to comment.