Skip to content

Commit

Permalink
Update testing.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Oct 22, 2024
1 parent e29c32e commit 903ac87
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
Expand All @@ -23,7 +23,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[strict]
pip install -e .[dev]
pre-commit install
Expand All @@ -41,8 +40,8 @@ jobs:
PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand All @@ -51,7 +50,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[strict]
pip install -e .[tests]
- name: Test Modules
Expand All @@ -74,12 +72,12 @@ jobs:
PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install pandoc
run: sudo apt-get install pandoc

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
Expand All @@ -88,7 +86,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[strict]
pip install -e .[docs]
- name: Build
run: jupyter-book build --path-output docs docs/source
Expand Down

0 comments on commit 903ac87

Please sign in to comment.