Skip to content

Merge pull request #16 from rjl493456442/fix-vector-sszsize #20

Merge pull request #16 from rjl493456442/fix-vector-sszsize

Merge pull request #16 from rjl493456442/fix-vector-sszsize #20

Workflow file for this run

name: methodical-ssz
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Download golangci-lint
run: wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s latest
- name: Lint
run: ./bin/golangci-lint run --config .golangci.yml
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Test
run: go test -v ./...