Skip to content
Open
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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: lint
- run: pixi run -e lint lint

Expand All @@ -56,8 +59,11 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
run: pixi run -e ${{ matrix.package }} test ${{ matrix.package }}
Expand All @@ -77,6 +83,7 @@ jobs:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: docs-${{ matrix.package }}
- name: Build docs
run: pixi run -e docs-${{ matrix.package }} docs ${{ matrix.package }}
1 change: 1 addition & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: docs-${{ matrix.package }}
- name: Build docs
run: pixi run -e docs-${{ matrix.package }} docs ${{ matrix.package }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Nightly Tests
on:
workflow_dispatch:
schedule:
- cron: '30 1 * * 1-5'
- cron: "30 1 * * 1-5"

jobs:
test:
Expand All @@ -17,8 +17,11 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
run: pixi run -e ${{ matrix.package }} test ${{ matrix.package }}
Expand All @@ -34,8 +37,11 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: lb-${{ matrix.package }}
- name: Test with lowest direct dependencies
run: pixi run -e lb-${{ matrix.package }} test ${{ matrix.package }}
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- '*/[0-9]*'
- "*/[0-9]*"

jobs:
determine-package:
Expand All @@ -27,6 +27,8 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.11"
Expand Down Expand Up @@ -67,6 +69,7 @@ jobs:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: docs-${{ needs.determine-package.outputs.package }}
- name: Build docs
run: pixi run -e docs-${{ needs.determine-package.outputs.package }} docs ${{ needs.determine-package.outputs.package }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/weekly-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Weekly Platform Tests
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * 1'
- cron: "0 2 * * 1"

jobs:
test:
Expand All @@ -18,8 +18,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: prefix-dev/setup-pixi@v0.9.4
with:
frozen: true
environments: ${{ matrix.package }}
- name: Run tests
run: pixi run -e ${{ matrix.package }} test ${{ matrix.package }}
4 changes: 2 additions & 2 deletions packages/essimaging/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ docs = [
]

[project.urls]
"Bug Tracker" = "https://github.com/scipp/essimaging/issues"
"Bug Tracker" = "https://github.com/scipp/ess/issues"
"Documentation" = "https://scipp.github.io/essimaging"
"Source" = "https://github.com/scipp/essimaging"
"Source" = "https://github.com/scipp/ess/tree/main/packages/essimaging"

[tool.setuptools_scm]
root = "../.."
Expand Down
4 changes: 2 additions & 2 deletions packages/essreduce/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ docs = [
grow-nexus = "ess.reduce.scripts.grow_nexus:main"

[project.urls]
"Bug Tracker" = "https://github.com/scipp/essreduce/issues"
"Bug Tracker" = "https://github.com/scipp/ess/issues"
"Documentation" = "https://scipp.github.io/essreduce"
"Source" = "https://github.com/scipp/essreduce"
"Source" = "https://github.com/scipp/ess/tree/main/packages/essreduce"

[tool.setuptools_scm]
root = "../.."
Expand Down