mirror of
https://github.com/ashishb/android-security-awesome.git
synced 2024-12-19 12:06:08 +00:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
# This workflow uses actions that are not certified by GitHub.
|
|
# They are provided by a third-party and are governed by
|
|
# separate terms of service, privacy policy, and support
|
|
# documentation.
|
|
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
|
|
name: Link Test
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
pull_request:
|
|
branches: [master, main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
validateLinks:
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Ruby
|
|
# See https://github.com/ruby/setup-ruby#versioning
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 3.0
|
|
|
|
- name: Install dependencies
|
|
run: gem install awesome_bot
|
|
- name: Run tests
|
|
run: |
|
|
# Some URLs could be flaky, try twice in case the first execution fails.
|
|
bash run_awesome_bot.sh || bash run_awesome_bot.sh
|