Skip to content

Commit 9c0368f

Browse files
committed
Update actions to run on pull request
1 parent 74e49db commit 9c0368f

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

.github/workflows/mkdoxy-test-demos.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: MkDoxy test build demos with all supported python versions
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:
@@ -25,7 +25,8 @@ jobs:
2525
sudo apt-get install doxygen
2626
- name: Clone test repo
2727
run: git clone https://github.com/JakubAndrysek/MkDoxy-demo.git demo
28-
- name: Change directory
29-
run: cd demo
3028
- name: Build docs
31-
run: mkdocs build --clean --verbose
29+
run: |
30+
cd demo
31+
python -m pip install -r requirements.txt
32+
mkdocs build --clean --verbose

.github/workflows/mkdoxy-test-repo.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: MkDoxy build all supported Python versions
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:

.idea/workspace.xml

+17-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)