Skip to content

Refactoring diamond #75

Refactoring diamond

Refactoring diamond #75

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install .[tests]
- name: Run tests
run: |
python -m pytest test/ --cov libra_toolbox --cov-report xml --cov-report term
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}