chore: use GitHub actions #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tester | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
tester: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' # Not needed with a .ruby-version file | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Install Dependencies | |
run: gem install awesome_bot | |
- name: Test | |
run: awesome_bot README.md --allow-redirect --allow-dupe -w weibo.com,viosey.com,hackernoon.com |