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

update .golangci.yml #259

Merged
merged 2 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#
# SPDX-License-Identifier: Apache-2.0
#

repository:
name: minbft
description: Implementation of MinBFT consensus protocol.
default_branch: main
has_downloads: false
has_issues: true
has_projects: false
has_wiki: false
archived: true
private: false
allow_squash_merge: true
allow_merge_commit: false
allow_rebase_merge: true
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
go: [1.13, 1.15, 1.16]
os: [ubuntu-20.04]
go: [1.16]
steps:
- uses: actions/setup-go@v2
with:
Expand Down
5 changes: 3 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ run:
skip-dirs:
- testing
linters:
enable-all: false
enable:
- gocyclo
- revive
# - revive
- dupl
- unconvert
- goconst
- gosec
- gofmt
# - gofmt
- misspell
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
![Status Badge](https://img.shields.io/badge/Status-archived-red)

**NOTE:** This lab has been archived and is no longer being maintained.

[![GitHub Actions](https://github.com/hyperledger-labs/minbft/workflows/Continuous%20integration/badge.svg)](https://github.com/hyperledger-labs/minbft/actions)
[![GoDoc](https://godoc.org/github.com/hyperledger-labs/minbft?status.svg)](https://godoc.org/github.com/hyperledger-labs/minbft)
[![Go Report Card](https://goreportcard.com/badge/github.com/hyperledger-labs/minbft)](https://goreportcard.com/report/github.com/hyperledger-labs/minbft)
Expand Down
Loading