mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
16 lines
362 B
YAML
16 lines
362 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:
|
||
|
- shell: bash
|
||
|
env:
|
||
|
OAUTH_TOKEN: ${{secrets.OAUTH_TOKEN}}
|
||
|
run: go get -t -v ./... && go run test_stale_repositories.go scripts.go
|