Skip to content

remove eden network #72

remove eden network

remove eden network #72

Workflow file for this run

name: Checks
on:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.18.5
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Format.
run: make format
- name: Linting & vetting.
run: make lint
Testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all tags as well.
- uses: actions/setup-go@v2
with:
go-version: 1.18.5
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Running tests
run: make test
env:
env: ${{ secrets.env }}