complete/.github/workflows/goreadme.yml

19 lines
482 B
YAML
Raw Normal View History

2020-04-09 11:07:58 -05:00
on:
pull_request:
branches: [master, v1]
push:
branches: [master, v1]
jobs:
goreadme:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Update readme according to Go doc
2020-04-09 14:04:03 -05:00
uses: posener/goreadme@v1.2.6
2020-04-09 11:07:58 -05:00
with:
recursive: 'true'
badge-travisci: 'true'
badge-codecov: 'true'
github-token: '${{ secrets.GITHUB_TOKEN }}'