Skip to content

Commit

Permalink
eefe
Browse files Browse the repository at this point in the history
  • Loading branch information
cpelley committed Jun 7, 2024
1 parent 069a4fb commit 80b28ac
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: [pull_request]

jobs:
test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest

steps:
Expand All @@ -20,14 +19,20 @@ jobs:
python-version: 3.9
cache: 'pip'

- name: Add checkout directory to PYTHONPATH
run: echo "PYTHONPATH=$(pwd):$PYTHONPATH" >> $GITHUB_ENV

- name: Install dependencies
run: pip install .[tests,docs]
run: |
pip install .[tests,docs]
pip uninstall dagrunner -y
- name: Run pytest
run: pytest

- name: Build documentation
run: ./docs/gen_docs dagrunner ./docs
run: |
./docs/gen_docs dagrunner ./docs
- name: Check if documentation has changed
id: check-docs
Expand Down

0 comments on commit 80b28ac

Please sign in to comment.