Skip to content

Bump github.com/octago/sflags from 0.3.1-0.20210726012706-20f2a9c31dfc to 0.3.1 #261

Bump github.com/octago/sflags from 0.3.1-0.20210726012706-20f2a9c31dfc to 0.3.1

Bump github.com/octago/sflags from 0.3.1-0.20210726012706-20f2a9c31dfc to 0.3.1 #261

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
cache-dependency-path: go.sum
- name: Validate checksum of dependencies.
run: go mod tidy
- name: Build
run: |
git submodule update --init
go build -v ./...
- name: Test
run: go test -v ./...