1
0
Fork 0
mirror of https://github.com/avelino/awesome-go.git synced 2024-11-27 11:24:48 -05:00
go/.github/workflows/run-check.yaml

19 lines
434 B
YAML
Raw Normal View History

name: Check For Stale Repositories
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
name: Running test
runs-on: ubuntu-latest
container: golang:latest
steps:
- uses: actions/checkout@1.0.0
- name: Get dependencies
run: go get -v -t -d ./...
- name: run script
run: go run test_stale_repositories.go scripts.go
env:
OAUTH_TOKEN: ${{secrets.OAUTH_TOKEN}}