awesome-go/.github/workflows/run-check.yaml
Tony Kappen f77a13db41
Fix test stale repositories workflow (#3270)
* fix typo in README.md

fixes #3204

* test

* Delete main.yml

* modify workflow
2020-10-05 05:59:38 -03:00

19 lines
417 B
YAML

name: Check For Stale Repositories
on:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
name: Running test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.15.x']
steps:
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: run script
run: go run test_stale_repositories.go scripts.go
env:
GITHUB_OAUTH_TOKEN: ${{secrets.OAUTH_TOKEN}}