v3 should allow to update docker registry credentials #354
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: Docs Tests | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.head_ref || github.run_id }}' | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs_test.yml' | |
push: | |
branches: [ main ] | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs_test.yml' | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
Test-Docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare setup | |
run: cp -a .ruby-version docs/v3/.ruby-version | |
- uses: ./.github/workflows/composite/setup | |
with: | |
WORKING_DIRECTORY: docs/v3 | |
- name: Run docs tests | |
run: | | |
bundle config set --local without 'development' | |
bundle install | |
bundle exec rake check_doc_links | |
- uses: ravsamhq/[email protected] | |
if: github.event_name == 'push' | |
with: | |
status: ${{ job.status }} | |
notify_when: 'failure' # default is 'success,failure,warnings' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required |