This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add version.json file * bump go.mod to Go 1.16 and run go fix * run go mod tidy * update .github/workflows/automerge.yml * update .github/workflows/go-test.yml * update .github/workflows/go-check.yml * add .github/workflows/releaser.yml * add .github/workflows/release-check.yml * add .github/workflows/tagpush.yml Co-authored-by: web3-bot <[email protected]>
- Loading branch information
Showing
9 changed files
with
87 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,28 @@ jobs: | |
unit: | ||
runs-on: ubuntu-latest | ||
name: All | ||
env: | ||
RUNGOGENERATE: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.16.x" | ||
go-version: "1.17.x" | ||
- name: Run repo-specific setup | ||
uses: ./.github/actions/go-check-setup | ||
if: hashFiles('./.github/actions/go-check-setup') != '' | ||
- name: Read config | ||
if: hashFiles('./.github/workflows/go-check-config.json') != '' | ||
run: | | ||
if jq -re .gogenerate ./.github/workflows/go-check-config.json; then | ||
echo "RUNGOGENERATE=true" >> $GITHUB_ENV | ||
fi | ||
- name: Install staticcheck | ||
run: go install honnef.co/go/tools/cmd/staticcheck@434f5f3816b358fe468fa83dcba62d794e7fe04b # 2021.1 (v0.2.0) | ||
run: go install honnef.co/go/tools/cmd/staticcheck@df71e5d0e0ed317ebf43e6e59cf919430fa4b8f2 # 2021.1.1 (v0.2.1) | ||
- name: Check that go.mod is tidy | ||
uses: protocol/multiple-go-modules@v1.0 | ||
uses: protocol/multiple-go-modules@v1.2 | ||
with: | ||
run: | | ||
go mod tidy | ||
|
@@ -37,14 +48,27 @@ jobs: | |
fi | ||
- name: go vet | ||
if: ${{ success() || failure() }} # run this step even if the previous one failed | ||
uses: protocol/multiple-go-modules@v1.0 | ||
uses: protocol/multiple-go-modules@v1.2 | ||
with: | ||
run: go vet ./... | ||
- name: staticcheck | ||
if: ${{ success() || failure() }} # run this step even if the previous one failed | ||
uses: protocol/multiple-go-modules@v1.0 | ||
uses: protocol/multiple-go-modules@v1.2 | ||
with: | ||
run: | | ||
set -o pipefail | ||
staticcheck ./... | sed -e 's@\(.*\)\.go@./\1.go@g' | ||
- name: go generate | ||
uses: protocol/[email protected] | ||
if: (success() || failure()) && env.RUNGOGENERATE == 'true' | ||
with: | ||
run: | | ||
git clean -fd # make sure there aren't untracked files / directories | ||
go generate ./... | ||
# check if go generate modified or added any files | ||
if ! $(git add . && git diff-index HEAD --exit-code --quiet); then | ||
echo "go generated caused changes to the repository:" | ||
git status --short | ||
exit 1 | ||
fi | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# File managed by web3-bot. DO NOT EDIT. | ||
# See https://github.com/protocol/.github/ for details. | ||
|
||
name: Release Checker | ||
on: | ||
pull_request: | ||
paths: [ 'version.json' ] | ||
branches: [ master ] | ||
|
||
jobs: | ||
release-check: | ||
uses: protocol/.github/.github/workflows/release-check.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# File managed by web3-bot. DO NOT EDIT. | ||
# See https://github.com/protocol/.github/ for details. | ||
|
||
name: Releaser | ||
on: | ||
push: | ||
paths: [ 'version.json' ] | ||
branches: [ master ] | ||
|
||
jobs: | ||
releaser: | ||
uses: protocol/.github/.github/workflows/releaser.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# File managed by web3-bot. DO NOT EDIT. | ||
# See https://github.com/protocol/.github/ for details. | ||
|
||
name: Tag Push Checker | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
releaser: | ||
uses: protocol/.github/.github/workflows/tagpush.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/ipfs/go-filestore | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/gogo/protobuf v1.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"version": "v1.0.0" | ||
} |