awesome-go/.github/workflows/run-check.yaml
Avelino f503430fe9 remove netlify on run-check action
Signed-off-by: Avelino <avelinorun@gmail.com>
2021-12-16 06:26:09 -03:00

22 lines
481 B
YAML

name: Check For Stale Repositories
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
name: Running test
runs-on: ubuntu-latest
environment: netlify
strategy:
matrix:
go: ['1.15.x']
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}}