Skip to content

Commit 2a8e2c3

Browse files
authored
Merge pull request #220 from jetbrains-academy/konstantin/links_checker_action
Add links checker action
2 parents 768614e + 4281951 commit 2a8e2c3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/links_checker.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: LinksChecker
2+
3+
on:
4+
# Triggers the workflow on push or pull request events but only for the "master" branch
5+
push:
6+
branches: [ "master" ]
7+
pull_request:
8+
branches: [ "master" ]
9+
10+
# Allows you to run this workflow manually from the Actions tab
11+
workflow_dispatch:
12+
13+
jobs:
14+
links-checker-job:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Check out repository code
18+
uses: actions/checkout@v3
19+
20+
- name: Call the action jetbrains-academy/links-checker-action
21+
uses: jetbrains-academy/links-checker-action@main
22+
with:
23+
dir: ./

0 commit comments

Comments
 (0)