Skip to content

chore(deps): bump github.com/ethersphere/bee/v2 from 2.0.0 to 2.0.1 #1076

chore(deps): bump github.com/ethersphere/bee/v2 from 2.0.0 to 2.0.1

chore(deps): bump github.com/ethersphere/bee/v2 from 2.0.0 to 2.0.1 #1076

Workflow file for this run

name: Go
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ['1.21.4']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Set git to use LF
# make sure that line endings are not converted on windows
# as gofmt linter will report that they need to be changed
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Lint
if: matrix.os == 'ubuntu-latest'
run: make lint
- name: Vet
if: matrix.os == 'ubuntu-latest'
run: make vet
- name: Test with Race Detector
if: matrix.os == 'ubuntu-latest'
run: make test-race
- name: Test
run: make test