diff options
author | mattip <matti.picus@gmail.com> | 2020-12-21 12:21:16 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-12-21 12:21:16 +0200 |
commit | 0e7ca712891b07341fcd6a01b9834807fd12e49c (patch) | |
tree | 42a9cbb3ba39beb8f7796b7faa11e61242f6f717 /.github/workflows | |
parent | f7bc512184a1de3992b0d154e6244a7a0d9a574f (diff) | |
download | numpy-0e7ca712891b07341fcd6a01b9834807fd12e49c.tar.gz |
TST: add back sdist test run
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build_test.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index ee43561bf..ce0c492e6 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -199,3 +199,18 @@ jobs: - uses: ./.github/actions + sdist: + needs: smoke_test + runs-on: ubuntu-latest + env: + USE_SDIST: 1 + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + fetch-depth: 0 + - uses: actions/setup-python@v2 + with: + python-version: ${{ env.PYTHON_VERSION }} + - uses: ./.github/actions + |