cert-manager-webhook-dnsimple/.forgejo/workflows/test.yaml
Joseph Hanson 8b827ab677
Some checks failed
/ test (push) Failing after 3s
correct setup-go version.
2024-05-15 11:21:14 -05:00

31 lines
No EOL
801 B
YAML

on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
run: actions/setup-go@v3
with:
go-version: '1.22.3'
- name: Output File
run: |
echo "
apiVersion: v1
kind: Secret
metadata:
name: dnsimple-api-token
namespace: basic-present-record
stringData:
api-token: $API_TOKEN" > testdata/dnsimple/dnsimple-secret.yaml
env:
API_TOKEN: ${{ secrets.API_TOKEN }}
- name: Test
run: make test TEST_ZONE_NAME={{ secrets.TEST_ZONE_NAME }}
- name: Clean up
run: rm -f testdata/dnsimple/dnsimple-secret.yaml