mirror of
https://github.com/michaelachrisco/Electronic-Interchange-Github-Resources
synced 2024-11-01 00:13:19 -07:00
24 lines
482 B
YAML
24 lines
482 B
YAML
name: Ruby
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
|
|
with:
|
|
ruby-version: '3.1'
|
|
- name: Install dependencies
|
|
run: gem install awesome_bot
|
|
- name: Verify all links are valid
|
|
run: awesome_bot --allow-redirect README.md
|
|
|