chore(deps): update all dependencies (#60) #363
Workflow file for this run
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
name: Terratest | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '**.svg' | |
- '**.drawio' | |
- '.spelling' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- '**.svg' | |
- '**.drawio' | |
- '.spelling' | |
jobs: | |
skip-check: | |
runs-on: ubuntu-24.04 | |
name: Skip the job? | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5.3.1 | |
with: | |
skip_after_successful_duplicate: 'true' | |
do_not_skip: '["workflow_dispatch", "schedule"]' | |
terratest: | |
runs-on: ubuntu-24.04 | |
env: | |
TAG: "ci" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: 1.23.4 | |
- name: build | |
run: make build | |
- name: build image | |
run: make image | |
- name: k3d | |
uses: AbsaOSS/k3d-action@v2 | |
with: | |
cluster-name: "coredns-crd" | |
args: >- | |
--config=k3d-cluster.yaml | |
- name: test | |
run: | | |
make terratest |