Skip to content

Merge pull request #14 from Banno/dependabot/go_modules/golang.org/x/… #14

Merge pull request #14 from Banno/dependabot/go_modules/golang.org/x/…

Merge pull request #14 from Banno/dependabot/go_modules/golang.org/x/… #14

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run-tests:
name: Run Tests and Vet
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.18
- run: go test ./...
- run: go vet ./...
build-docker-image:
name: Build docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker build .