Skip to content

Commit

Permalink
Remove poetry from gha
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Feb 16, 2024
1 parent 2c76ffa commit e6b7dd3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,19 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: snok/install-poetry@v1

- uses: actions/cache@v2
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}

- name: Install dependencies
run: poetry install
run: pip3 install .

- name: Install dev dependencies
run: pip3 install pylint pytest

- name: Check code
run: poetry run pylint --rcfile pyproject.toml shaperglot
run: pylint --rcfile pyproject.toml shaperglot

- name: Test code
run: poetry run pytest
run: pytest

0 comments on commit e6b7dd3

Please sign in to comment.