Skip to content

Commit 6cbc74c

Browse files
authored
Update GitHub Actions workflow for tests
Updated GitHub Actions workflow to use checkout@v4 and modified test command to include coverage reporting.
1 parent 3c889d3 commit 6cbc74c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
matrix:
1313
python-version: ["3.11", "3.12"]
1414
steps:
15-
- uses: actions/checkout@v7
15+
- uses: actions/checkout@v4
1616
- uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install
2020
run: |
2121
python -m pip install --upgrade pip
2222
pip install -e ".[dev]"
23-
- name: Test
24-
run: pytest -q
23+
- name: Test (blocking)
24+
run: pytest --cov=epistemic_forge --cov-report=term-missing --cov-fail-under=70

0 commit comments

Comments
 (0)