Skip to content

Tests

Tests #62

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 12 * * 1"
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
env:
INWX_USERNAME: ${{ secrets.INWX_USERNAME }}
INWX_PASSWORD: ${{ secrets.INWX_PASSWORD }}
ZONE: "test-${{ github.run_id }}.com"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Test
run: go test -v ./...