Skip to content

Remove check_first=True #110

Remove check_first=True

Remove check_first=True #110

Workflow file for this run

name: Coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage codecov mock mock_alchemy
pip install .
- name: Run coverage
run: |
coverage run --source seq_dbutils -m unittest discover
coverage report -m
coverage xml
- name: Run codecov
if: success()
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
codecov