coverage.yml -> depend on .github/actions/setup like other workflows

This commit is contained in:
jdegenstein 2024-12-17 11:48:33 -06:00 committed by GitHub
parent e36ab04cbc
commit dd1aabba78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,14 +6,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
- name: Setup
uses: ./.github/actions/setup/
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov=build123d
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5