Skip to content

Bump github.com/emicklei/go-restful from 2.15.0+incompatible to 2.16.0+incompatible #8

Bump github.com/emicklei/go-restful from 2.15.0+incompatible to 2.16.0+incompatible

Bump github.com/emicklei/go-restful from 2.15.0+incompatible to 2.16.0+incompatible #8

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 .