Skip to content

Adding packer and autounatted.xml files configuration #22

Adding packer and autounatted.xml files configuration

Adding packer and autounatted.xml files configuration #22

Workflow file for this run

name: unit-tests
on:
push:
tags:
- v*
branches:
- 'master'
- '*'
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
unit-test:
name: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v3
- name: Run unit tests
run: |
pushd experiments/swdt
make test
make build
popd