Skip to content

Commit b381ce0

Browse files
authored
Merge pull request #52 from GavinHuttley/main
DEV: updated actions to using --group dev
2 parents fa9a4ce + 6c67432 commit b381ce0

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
- name: Build Documentation
4545
run: |
4646
# update executable components
47-
uv run --group test nox -s cogdocs
47+
uv run --group dev nox -s cogdocs
4848
# build actual docs
49-
uv run --group test zensical build --clean
49+
uv run --group dev zensical build --clean
5050
working-directory: ${{ github.workspace }}
5151

5252
- name: Upload Documentation Artifact

.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache-dependency-glob: "pyproject.toml"
2323

2424
- name: Format code using ruff
25-
run: uv run --group test nox -s fmt
25+
run: uv run --group dev nox -s fmt
2626

2727
- name: Commit changes
2828
uses: EndBug/add-and-commit@v10

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
- name: "Run nox for ${{ matrix.python-version }}"
3636
shell: bash
3737
run: |
38-
uv run --group test nox -db uv --force-python python -s test
39-
uv run --group test nox -db uv --force-python python -s test_types
40-
uv run --group test nox -db uv --force-python python -s test_docs
38+
uv run --group dev nox -db uv --force-python python -s test
39+
uv run --group dev nox -db uv --force-python python -s test_types
40+
uv run --group dev nox -db uv --force-python python -s test_docs
4141
4242
- name: "Run MPI tests"
4343
if: startsWith(matrix.os, 'ubuntu')
4444
shell: bash
4545
run: |
46-
uv run --group test nox -db uv --force-python python -s testmpi
46+
uv run --group dev nox -db uv --force-python python -s testmpi
4747
4848
docbuild:
4949
name: "Test the docs"
@@ -65,8 +65,8 @@ jobs:
6565

6666
- name: "test the docs code"
6767
run: |
68-
uv run --group test nox -s cogdocs
69-
uv run --group test zensical build
68+
uv run --group dev nox -s cogdocs
69+
uv run --group dev zensical build
7070
7171
build:
7272
name: Build wheel and sdist

0 commit comments

Comments
 (0)