Skip to content

Commit

Permalink
ci: build after test
Browse files Browse the repository at this point in the history
Signed-off-by: Inada Naoki <songofacandy@gmail.com>
  • Loading branch information
methane committed Feb 28, 2024
1 parent 1a4d65f commit 1a9f963
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -24,3 +24,14 @@ jobs:
run: python -m pip install -r requirements-dev.txt
- name: Run tests
run: pytest --cov=fluent

build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx run hatch build
- uses: actions/upload-artifact@v2
with:
name: dist
path: dist/*.*

0 comments on commit 1a9f963

Please sign in to comment.