Skip to content

Commit

Permalink
adding integration tests to PRs and trying to fix readthedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
betolink committed Feb 29, 2024
1 parent 6759f7d commit 2fcd0ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Integration Tests

on:
pull_request:
push:
branches:
- main
Expand All @@ -10,12 +11,18 @@ on:
- docs/**
- binder/**

# When this workflow is queued, automatically cancel any previous running
# or pending jobs from the same branch
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
fail-fast: false

steps:
Expand Down
1 change: 1 addition & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ build:
# Tell poetry to not use a virtual environment
- poetry config virtualenvs.create false
post_install:
- pip uninstall -y mkdocs
# Install dependencies with 'docs' dependency group
# https://python-poetry.org/docs/managing-dependencies/#dependency-groups
- poetry install
Expand Down

0 comments on commit 2fcd0ac

Please sign in to comment.