Skip to content

Test-Futureproof-Dependencies #610

Test-Futureproof-Dependencies

Test-Futureproof-Dependencies #610

---
name: "Test-Futureproof-Dependencies"
on: # yamllint disable-line rule:truthy
push:
pull_request:
# POSIX cron format
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html
schedule:
# Once every 5 minutes
# - cron: "*/5 * * * *"
# Once a day
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
contents: "read"
issues: "write"
pull-requests: "write"
jobs:
Test-Futureproof-Dependencies:
runs-on: "ubuntu-24.04"
steps:
- uses: "actions/checkout@v7"
- uses: "actions/setup-go@v7"
with:
go-version: "1.27.0"
- run: |
go get -u ./...
go mod download
go mod tidy
go mod vendor
go test