Skip to content

Update READMEs

Update READMEs #60

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
# needed to use `git merge-base HEAD origin/master`
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Pull submodules
run: |
git submodule init && git submodule update
- name: Install dependencies for legacy algorithms
run: |
pip3 install pygraphblas==5.1.8.0
- name: Install requirements
run: |
pip3 install -r requirements.txt
- name: Install cfpq_data_devtools
run: |
cd deps/CFPQ_Data && python3 setup.py install
- name: Run tests
run: |
python3 -m coverage run -m pytest test -v -m "CI"
- name: Generate coverage HTML report
run: |
coverage html
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: htmlcov/
- name: Collect diff coverage
run: |
/bin/bash collect_diff_coverage.sh
- name: Generate diff coverage HTML report
run: |
coverage html
- name: Upload diff coverage report
uses: actions/upload-artifact@v4
with:
name: diff-coverage-report
path: htmlcov/