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 adecc0b commit bfe80a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: poetry install
run: |
python -m pip install --upgrade pip poetry
poetry install
- name: Test with pytest
run: poetry run pytest
- name: Upload coverage to Codecov
Expand Down

0 comments on commit bfe80a3

Please sign in to comment.