diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ca7272b..68dfebf 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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