Skip to content

Commit

Permalink
Update actions to run on pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubAndrysek committed Jul 21, 2023
1 parent 74e49db commit 9c0368f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/mkdoxy-test-demos.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: MkDoxy test build demos with all supported python versions

on: [push]
on: [push, pull_request]

jobs:
build:
Expand All @@ -25,7 +25,8 @@ jobs:
sudo apt-get install doxygen
- name: Clone test repo
run: git clone https://github.com/JakubAndrysek/MkDoxy-demo.git demo
- name: Change directory
run: cd demo
- name: Build docs
run: mkdocs build --clean --verbose
run: |
cd demo
python -m pip install -r requirements.txt
mkdocs build --clean --verbose
2 changes: 1 addition & 1 deletion .github/workflows/mkdoxy-test-repo.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: MkDoxy build all supported Python versions

on: [push]
on: [push, pull_request]

jobs:
build:
Expand Down
23 changes: 17 additions & 6 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9c0368f

Please sign in to comment.