Skip to content

Commit

Permalink
Add an sdist install job
Browse files Browse the repository at this point in the history
This should hopefully catch issues like,
#293
  • Loading branch information
goodboy committed Jul 11, 2022
1 parent 0acfa79 commit 4e2e587
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,26 @@ jobs:
- name: Run MyPy check
run: mypy tractor/ --ignore-missing-imports

sdist-linux:
name: 'sdist'
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Build sdist
run: python setup.py sdist --formats=zip

- name: Install sdist from .zips
run: python -m pip install dist/*.zip


testing-linux:
name: '${{ matrix.os }} Python ${{ matrix.python }} - ${{ matrix.spawn_backend }}'
timeout-minutes: 10
Expand Down

0 comments on commit 4e2e587

Please sign in to comment.