Skip to content

Commit

Permalink
Merge pull request #144 from Bidon15/fix_go_v
Browse files Browse the repository at this point in the history
mod: fix go version in go.mod
  • Loading branch information
Bidon15 authored Oct 27, 2021
2 parents 5806f42 + 8b73f0b commit eb04000
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ on:
pull_request:

jobs:

golangci:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
os: [ubuntu-latest]
name: lint
runs-on: ubuntu-latest

Expand Down
21 changes: 11 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,22 @@ name: Go Test

on:
push:
branches:
branches:
- main
pull_request:

jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.16', '1.17']
steps:
- uses: actions/checkout@v2

- name: set up go
uses: actions/setup-go@v2
with:
go-version: '1.17.0'
- uses: actions/checkout@v2
- name: set up go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}

- name: test
run: go test -v ./...
- name: test
run: go test -v ./...
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# celestia-node
# Celestia Node
Celestia storage and light node

### Minimum requirements

| Requirement | Notes |
|-------------|------------------|
| Go version | 1.16 or higher |

0 comments on commit eb04000

Please sign in to comment.