Skip to content

preparing v1.4.0 release #69

preparing v1.4.0 release

preparing v1.4.0 release #69

Workflow file for this run

---
name: build and test
on:
push:
branches: [master]
paths:
- '**.go'
- 'go.mod'
pull_request:
branches: [master]
paths:
- '**.go'
- 'go.mod'
jobs:
go-build:
runs-on: ubuntu-22.04
container: matthewschuchard/packer-plugin
steps:
- name: checkout
uses: actions/checkout@v4
- name: install prereqs
run: apk add --no-cache --update build-base && touch /usr/local/bin/py.test
- name: build
run: make build
- name: unit test
run: make unit