Skip to content

Commit b0d971e

Browse files
committed
chore: fixups
1 parent d1b9b32 commit b0d971e

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/publish_tp53.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ jobs:
2626
reference: "main"
2727
tag: "${{ github.ref_name }}"
2828

29-
tests:
30-
name: tests
29+
python-tests:
30+
name: python-tests
3131
needs: on-main-branch-check
3232
if: ${{ needs.on-main-branch-check.outputs.on_main == 'true' }}
3333
uses: "./.github/workflows/tests_python.yml"
3434

3535
build-wheels:
3636
name: build wheels
37-
needs: tests
37+
needs: python-tests
3838
uses: "./.github/workflows/wheels.yml"
3939

4040
build-sdist:
4141
name: build source distribution
42-
needs: tests
42+
needs: python-tests
4343
runs-on: ubuntu-latest
4444
steps:
4545
- uses: actions/checkout@v4

.github/workflows/tests_scala.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: scala tests
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
tags:
8+
- "!**"
9+
workflow_call:
410

511
jobs:
612
Tests:

0 commit comments

Comments
 (0)