Skip to content

Commit 1a9f963

Browse files
committed
ci: build after test
Signed-off-by: Inada Naoki <songofacandy@gmail.com>
1 parent 1a4d65f commit 1a9f963

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,14 @@ jobs:
2424
run: python -m pip install -r requirements-dev.txt
2525
- name: Run tests
2626
run: pytest --cov=fluent
27+
28+
build:
29+
needs: test
30+
runs-on: ubuntu-latest
31+
steps:
32+
- uses: actions/checkout@v4
33+
- run: pipx run hatch build
34+
- uses: actions/upload-artifact@v2
35+
with:
36+
name: dist
37+
path: dist/*.*

0 commit comments

Comments
 (0)