mirror of
https://github.com/dariubs/GoBooks
synced 2024-11-11 01:10:44 +00:00
19 lines
474 B
YAML
19 lines
474 B
YAML
name: AwesomeBot
|
|
# Controls when the workflow will run
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.5.3
|
|
- run: gem install awesome_bot
|
|
- run: awesome_bot README.md --allow-dupe --allow-redirect
|