Skip to content

Commit

Permalink
Pylint action run (#98)
Browse files Browse the repository at this point in the history
* Add Doxygen Action workflow

* Update Pylint workflow to trigger on push and pull request events for the main branch

* Remove doxygen workflow

Fix typo

Fix workflow
  • Loading branch information
Grufoony authored and sbaldu committed Dec 16, 2023
1 parent 2dba00a commit 8b9ce11
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Commit and Push
run: |
git checkout -b main
git checkout gh-pages
git add .
git commit -m "Deploy documentation"
git push --force origin main
git commit -m "Auto-deploy documentation"
git push
6 changes: 5 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Pylint

on: [push]
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
Expand Down

0 comments on commit 8b9ce11

Please sign in to comment.