Skip to content

Merge pull request #20 from biowdl/update_deps #29

Merge pull request #20 from biowdl/update_deps

Merge pull request #20 from biowdl/update_deps #29

Workflow file for this run

name: Continous Integration
on: push
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: lint
run: tox -e py3-lint
test:
name: Testing
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v1
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox coverage tox-gh-actions
- name: test
run: tox
- uses: codecov/codecov-action@v3
with:
files: ./coverage.xml