Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
fab-dlock committed Aug 14, 2023
1 parent d99518e commit 4a9e246
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ jobs:
poetry run make LINT_FIX=0 lint
- name: Run test
run: |
poetry run make test
poetry run COVERAGE=1 make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Make apidocs
run: |
poetry run make apidoc
Expand All @@ -65,10 +69,10 @@ jobs:
githubpages:
runs-on: ubuntu-latest
needs: lint_and_test
#permissions:
# contents: read
# pages: write
# id-token: write
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
Expand All @@ -85,4 +89,4 @@ jobs:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v1

0 comments on commit 4a9e246

Please sign in to comment.