Skip to content

[feat][test] add tests on cat-file & hash-object #2

[feat][test] add tests on cat-file & hash-object

[feat][test] add tests on cat-file & hash-object #2

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r test/requirements.txt
- name: Run tests
run: |
cd xgit
pip install .
coverage run -m pytest .
coverage report -m