feat: introduce github actions (#781)

* feat: introduce github actions

* fix: allow 429 status

* fix: clean duplicate urls

* feat: upload results

* fix: clean up more 404s

* feat: reduce delay
This commit is contained in:
Gökay Gürcan
2021-07-09 00:13:17 +02:00
committed by GitHub
parent 04f6437ebc
commit e05334d71f
2 changed files with 63 additions and 15 deletions

56
.github/workflows/validator.yml vendored Normal file
View File

@@ -0,0 +1,56 @@
name: Validator
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
env:
RUBY_VERSION: '2.6'
defaults:
run:
shell: bash
jobs:
validator:
name: Validator
runs-on: ubuntu-latest
steps:
- id: setup-ruby
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- id: checkout
name: Checkout
uses: actions/checkout@v2
- id: install-gem
name: Install gem
run: |
gem install awesome_bot
- id: validate
name: Validate
run: |
awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect
- id: upload-artifact
name: Upload artifact
uses: actions/upload-artifact@v2
if: failure()
with:
if-no-files-found: warn
name: ab-results
path: |
ab-results-README.md.json
ab-results-README.md-filtered.json
ab-results-README.md-markdown-table.json