Skip to content

plugin refactor for v4 #77

plugin refactor for v4

plugin refactor for v4 #77

Workflow file for this run

name: Test and coverage
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- run: go generate -tags tools tools/tools.go
- uses: hashicorp/setup-packer@main
- run: |
make build
make install
packer plugin install github.com/hashicorp/docker
- name: go get
run: go get ./...
- name: unit tests
run: make test
env:
PACKER_ACC: 1
- name: acc tests
run: make test-acc
- name: e2e tests
run: make test-e2e