Reorganize markdown docs #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: legacy-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/ |