Update supported technologies #129
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: check-links | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
if: needs.changed-files.outputs.docs_changed == 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 | |
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 | |
with: | |
ruby-version: '3.4.1' | |
bundler-cache: true | |
cache-version: 0 | |
- name: Install Dependencies | |
run: | | |
cd docs | |
make install | |
- name: Check Links | |
run: | | |
cd docs | |
make check-links | |
# This job detects if any files changed in a given path | |
changed-files: | |
runs-on: ubuntu-latest | |
outputs: | |
docs_changed: ${{ steps.filter.outputs.docs_changed }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
docs: | |
- 'docs/**' | |
- name: Set output | |
run: echo "docs_changed=${{ steps.filter.outputs.docs }}" >> $GITHUB_OUTPUT |