Skip to content

Commit

Permalink
Adds a CI job to check pip-installability.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiliJohnson committed Nov 8, 2020
1 parent 0f8fb01 commit 1326f5d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-test-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,20 @@ jobs:
run: flake8 .
- name: Check format
run: black --check .

installability:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip wheel
- name: Check installable
run: pip install .

0 comments on commit 1326f5d

Please sign in to comment.