Skip to content

chore!: update dependencies & drop python 3.8 support #10

chore!: update dependencies & drop python 3.8 support

chore!: update dependencies & drop python 3.8 support #10

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.10' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install poetry && python -m poetry install
- name: Test
run: pytest -svv --cov=fasta_checksum_utils --cov-branch
- name: Codecov
run: codecov