Skip to content

Commit

Permalink
Pass Github Token
Browse files Browse the repository at this point in the history
  • Loading branch information
SushilMallRC committed Apr 9, 2024
1 parent 1603166 commit a48ccf6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,16 @@ jobs:
#Install dependencies
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install mkdocs-material
mkdocs gh-deploy --force
#Run unit tests
coverage run -m unittest discover . --pattern '*test.py'
coverage report
- name: Github Pages
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
CLEAN: true
run:
pip install mkdocs-material
mkdocs gh-deploy --force

0 comments on commit a48ccf6

Please sign in to comment.