mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
23 lines
501 B
YAML
23 lines
501 B
YAML
name: Check For Stale Repositories
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
build:
|
|
name: Running test
|
|
runs-on: ubuntu-latest
|
|
container: golang:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Get dependencies
|
|
run: go get -v -t -d ./...
|
|
- name: run script
|
|
run: go test stale_repositories_test.go scripts.go
|
|
env:
|
|
OAUTH_TOKEN: ${{secrets.OAUTH_TOKEN}}
|