diff options
| author | Eyal Posener <[email protected]> | 2020-04-09 19:07:58 +0300 |
|---|---|---|
| committer | Eyal Posener <[email protected]> | 2020-04-09 21:31:51 +0300 |
| commit | f929a1cfb4039a5519d84c2deff05cbaf05ce776 (patch) | |
| tree | 9bb705441dee435a190735387bf92349fa11e782 /.github | |
| parent | bcff2ec278afb628a8dcb7ded65ad9d3450e4121 (diff) | |
Add github actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/goreadme.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/goreadme.yml b/.github/workflows/goreadme.yml new file mode 100644 index 0000000..0af0519 --- /dev/null +++ b/.github/workflows/goreadme.yml @@ -0,0 +1,19 @@ +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 + uses: posener/[email protected] + with: + recursive: 'true' + badge-travisci: 'true' + badge-codecov: 'true' + badge-goreadme: 'true' + github-token: '${{ secrets.GITHUB_TOKEN }}' |
