Skip to content

update version

update version #94

Workflow file for this run

name: Biobricks codecov
on: [push, pull_request]
env:
BIOBRICKS_TEST_TOKEN: ${{ secrets.BIOBRICKS_TEST_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
name: Test biobricks
defaults:
run:
working-directory: ./biobricks
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install requirements
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov=./ --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3