diff --git a/.copier-answers.yaml b/.copier-answers.yaml index bcd75a2..f2d8923 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: fdea3fe +_commit: 41c2f2c _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: python diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 26b5b02..17e4861 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -74,17 +74,13 @@ jobs: - name: Make dist run: make dist - - name: Test wheel install - run: | - python -m venv /tmp/test-wheel - /tmp/test-wheel/bin/pip install dist/*.whl - /tmp/test-wheel/bin/python -c "import hatch_go" - - - name: Test sdist install - run: | - python -m venv /tmp/test-sdist - /tmp/test-sdist/bin/pip install dist/*.tar.gz - /tmp/test-sdist/bin/python -c "import hatch_go" + - uses: actions-ext/python/test-wheel@main + with: + module: hatch_go + + - uses: actions-ext/python/test-sdist@main + with: + module: hatch_go - uses: actions/upload-artifact@v7 with: