Skip to content
This repository was archived by the owner on Nov 7, 2023. It is now read-only.

Commit 2a45ea8

Browse files
authored
Merge pull request #259 from nhoriguchi/mr/update-golangci-yml
update .golangci.yml
2 parents 65dfd15 + 3a82a4f commit 2a45ea8

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/settings.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
4+
5+
repository:
6+
name: minbft
7+
description: Implementation of MinBFT consensus protocol.
8+
default_branch: main
9+
has_downloads: false
10+
has_issues: true
11+
has_projects: false
12+
has_wiki: false
13+
archived: true
14+
private: false
15+
allow_squash_merge: true
16+
allow_merge_commit: false
17+
allow_rebase_merge: true

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
os: [ubuntu-18.04, ubuntu-20.04]
14-
go: [1.13, 1.15, 1.16]
13+
os: [ubuntu-20.04]
14+
go: [1.16]
1515
steps:
1616
- uses: actions/setup-go@v2
1717
with:

.golangci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ run:
33
skip-dirs:
44
- testing
55
linters:
6+
enable-all: false
67
enable:
78
- gocyclo
8-
- revive
9+
# - revive
910
- dupl
1011
- unconvert
1112
- goconst
1213
- gosec
13-
- gofmt
14+
# - gofmt
1415
- misspell

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
![Status Badge](https://img.shields.io/badge/Status-archived-red)
2+
3+
**NOTE:** This lab has been archived and is no longer being maintained.
4+
15
[![GitHub Actions](https://github.com/hyperledger-labs/minbft/workflows/Continuous%20integration/badge.svg)](https://github.com/hyperledger-labs/minbft/actions)
26
[![GoDoc](https://godoc.org/github.com/hyperledger-labs/minbft?status.svg)](https://godoc.org/github.com/hyperledger-labs/minbft)
37
[![Go Report Card](https://goreportcard.com/badge/github.com/hyperledger-labs/minbft)](https://goreportcard.com/report/github.com/hyperledger-labs/minbft)

0 commit comments

Comments
 (0)