Skip to content

Commit

Permalink
try python 3.9 with ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Oct 2, 2024
1 parent 60fda20 commit edb1928
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
strategy:
matrix:
py:
- "3.11"
- "3.9"
os:
- "macos-latest"
- "ubuntu-latest"
architecture:
- x64
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Run tests
run: make test-matrix
coverage:
runs-on: macos-latest
runs-on: ubuntu-latest
name: Report coverage
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
Expand All @@ -41,21 +41,21 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.9
architecture: x64
- name: Install dependencies
run: make build-for-test
- name: Report coverage
run: make cover-coveralls
lint:
runs-on: macos-latest
runs-on: ubuntu-latest
name: Lint the package
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.9
architecture: x64
- name: Install dependencies
run: make build
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@
test_suite='tests',
install_requires=requirements,
setup_requires=setup_requirements,
tests_require=test_requirements,
extras_require={'dev': dev_requirements, 'test': test_requirements},
)

0 comments on commit edb1928

Please sign in to comment.