This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
Test Templates #355
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021-2022 VMware, Inc. | |
# SPDX-License-Identifier: BSD-2-Clause | |
name: Test Templates | |
on: | |
workflow_dispatch: {} | |
push: | |
paths: | |
- 'builder/**' | |
- 'templates/**' | |
- 'tests/**' | |
schedule: | |
- cron: '0 6 * * 1' | |
env: | |
REGISTRY: ghcr.io | |
CONTAINER_PATH: ${{ github.repository }} | |
DEPENDENCY_BASE_URL: https://github.com/${{ github.repository }} | |
jobs: | |
template-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
- run: go version | |
- name: Run Template Tests | |
run: make base_url=${{ env.DEPENDENCY_BASE_URL }} registry.location=other REGISTRY=${{ env.REGISTRY }}/${{ env.CONTAINER_PATH }} template-tests |