diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8d81c5..0a3bbfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,11 @@ jobs: os: [macos-latest] python-version: - "3.12" + - "3.11" + - "3.10" + - "3.9" + - "3.8" + - "3.7" steps: - name: Checkout @@ -22,13 +27,13 @@ jobs: with: python-version: ${{ matrix.python-version }} -# - name: Install -# run: | -# pip install -e .[test] -# pip install -e .[build] -# -# - name: Test -# run: py.test -vvs -# -# - name: Build -# run: python setup.py build sdist bdist_wheel + - name: Install + run: | + pip install -e .[test] + pip install -e .[build] + + - name: Test + run: py.test -vvs + + - name: Build + run: python setup.py build sdist bdist_wheel