Skip to content

Commit

Permalink
Merge branch 'gumyr:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
slobberingant authored Jan 5, 2025
2 parents 67a229b + c0728e0 commit 9841df9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ runs:
- name: python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ inputs.python-version }}
- name: install requirements
shell: bash
run: |
pip install wheel
pip install mypy
pip install pytest
pip install pytest-cov
pip install pylint
pip install .
11 changes: 4 additions & 7 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
python-version: "3.10"
- 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
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

0 comments on commit 9841df9

Please sign in to comment.