Skip to content

Update module github.com/spf13/afero to v1.11.0 #299

Update module github.com/spf13/afero to v1.11.0

Update module github.com/spf13/afero to v1.11.0 #299

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Lint, Test, Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
goversion:
- 1.12
- 1.13
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.goversion }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Lint
run: make lint
- name: Test
run: make test
- name: Build
run: make build