Skip to content

add more resource types #29

add more resource types

add more resource types #29

Workflow file for this run

name: docker-images
on:
push:
branches:
- main
tags:
- v[0-9]+.[0-9]+.[0-9]+
pull_request:
branches:
- main
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
DOCKER_BUILDKIT: 1
steps:
- uses: actions/checkout@v4
with:
# needed so we can properly determine versioning for building images/etc...
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
# Required so that we fetch tags as well (https://github.com/actions/checkout/issues/448)
- name: Fetch tags
run: |
git fetch --tags
git tag -l -n1
- name: Run tests
run: make test