Use go template for powershell, golang and node #1999
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: e2e-url-checker | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
- name: Install Go | |
uses: actions/setup-go@master | |
with: | |
go-version: 1.22.x | |
- name: Run URL checker tests | |
run: make e2e |