We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nox
1 parent 6c8f614 commit 05411b7Copy full SHA for 05411b7
.github/workflows/build_package.yml
@@ -1,4 +1,4 @@
1
-name: Publish
+name: Build Package
2
3
on:
4
pull_request:
@@ -25,7 +25,7 @@ jobs:
25
python-version: "3.10"
26
27
- name: Install build dependencies
28
- run: pip install build
+ run: pip install nox
29
30
- name: Set BUILD_RAGNA_BASE environment variable
31
run: |
@@ -37,8 +37,12 @@ jobs:
37
38
- name: Build distribution
39
40
- echo "Building package: ${{ matrix.package }}"
41
- python -m build
+ if [ "${{ matrix.package }}" == "ragna-base" ]; then
+ echo "Building package with nox -s build-base"
42
+ nox -s build-base
43
+ else
44
+ echo "Building package with nox -s build"
45
+ nox -s build
46
47
- name: Verify package
48
0 commit comments