mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
ca3d6d7366
* fix typo in README.md fixes #3204 * test * Delete main.yml * fix workflow * set to run on original repository
21 lines
466 B
YAML
21 lines
466 B
YAML
name: Check For Stale Repositories
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
jobs:
|
|
build:
|
|
name: Running test
|
|
runs-on: ubuntu-latest
|
|
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}} |