Skip to content

Commit

Permalink
WIP: Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
slowaner committed Nov 9, 2023
1 parent 9ebcffb commit 674c891
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/lint-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,22 @@ jobs:
run: make lint
- name: Run test
run: make test
- name: Run building docs
run: make build-docs
build-docs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.11' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install docs/requirements.txt
- name: Run building docs
run: make build-docs
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make tools
run: poetry install
- name: Publish in PyPI
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
Expand Down

0 comments on commit 674c891

Please sign in to comment.