Skip to content

Commit

Permalink
Add links checker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kochaika committed Dec 18, 2023
1 parent 2914d21 commit d13e29a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/links_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: LinksChecker

on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
# branches: [ "main" ]
# pull_request:
# branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
links-checker-job:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Call action jetbrains-academy/links-checker-action
uses: jetbrains-academy/links-checker-action@main
with:
dir: ./

0 comments on commit d13e29a

Please sign in to comment.