Skip to content

Commit

Permalink
NO-TICKET fix warnings of GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
baixiac committed May 23, 2024
1 parent 149303a commit 8854c4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
main:

runs-on: ubuntu-22.04
runs-on: macos-12
strategy:
matrix:
part: [
Expand All @@ -23,9 +23,9 @@ jobs:
]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install dependencies
Expand All @@ -34,7 +34,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Install IPython kernel
run: |
sudo python -m ipykernel install --name smoketests
python -m ipykernel install --name smoketests
- name: Smoke test tutorial
run: |
pytest --collect-only --nbmake ./notebooks/${{ matrix.part }}
Expand Down

0 comments on commit 8854c4e

Please sign in to comment.