Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
stormpy_image: ["ci", "ci-debug"]
steps:
- name: Git clone
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build dftlib from Dockerfile
run: |
docker build -t volkm/dftlib . \
Expand All @@ -46,7 +46,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Git clone
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build dftlib
run: pip install -e .[${{ matrix.dependencies }}]
- name: Run tests
Expand All @@ -70,7 +70,7 @@ jobs:
sudo apt-get update
sudo apt-get install -qq -y pandoc
- name: Git clone
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build dftlib
run: pip install -e .[${{ matrix.dependencies }}]
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatapply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: psf/black@stable
with:
options: ""
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: psf/black@stable
with:
options: "--check --diff --color"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Build wheels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
path: dist
merge-multiple: true
- name: Checkout test files
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: dist/test_files
sparse-checkout: |
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
source venv/bin/activate
python3 -m pip install "$WHEEL"
- name: Checkout test files
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: dist/test_files
sparse-checkout: |
Expand Down