Skip to content

Remove VM test that's expected to fail. #9

Remove VM test that's expected to fail.

Remove VM test that's expected to fail. #9

Workflow file for this run

name: go-tests
on:
push:
paths:
- '**/**.go'
- '**/go.mod'
- '.github/workflows/go-tests.yml'
- '**/Dockerfile'
- 'Makefile'
pull_request:
paths:
- '**/**.go'
- '**/go.mod'
- '.github/workflows/go-tests.yml'
- '**/Dockerfile'
- 'Makefile'
workflow_dispatch:
jobs:
make-test_submitcoverage: #test and submit coverage to codecov on pushes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.18' # The Go version to download (if necessary) and use.
- run: go version
- run: make test submit-coverage
podman-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: podman build .