Skip to content

Commit

Permalink
build(code): 🙈 remove poetry.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
MerleLiuKun committed Aug 19, 2024
1 parent 14f71cc commit e8ca381
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
include:
- python-version: 3.10
- python-version: '3.10'
update-coverage: true


steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry-without-lock'
cache: 'poetry'
- name: Install dependencies
run: make env
run: poetry install
- name: Test with pytest
run: poetry run pytest
- name: Upload coverage to Codecov
Expand Down

0 comments on commit e8ca381

Please sign in to comment.