Skip to content

Commit

Permalink
test on 3.6 also
Browse files Browse the repository at this point in the history
  • Loading branch information
raylu committed Apr 7, 2024
1 parent c50ade0 commit 1c95179
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,23 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.x']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}
cache: pip
- name: install
run: pip3 install --progress-bar off ruff coveralls
- name: unittest
run: coverage run --source pigwig --omit 'pigwig/tests/*' -m unittest -v
- name: coveralls
uses: coverallsapp/github-action@v2
if: ${{ matrix.python-version == '3.x' }}
with:
parallel-finished: true
- name: ruff
run: ruff check --output-format=github pigwig blogwig

0 comments on commit 1c95179

Please sign in to comment.