Skip to content

Commit

Permalink
update(.github): change configure command
Browse files Browse the repository at this point in the history
  • Loading branch information
danila committed Feb 3, 2024
1 parent 859fda7 commit 0b51ceb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ on:
branches: [ "main", "dev" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: "poetry"
cache-dependency-path: poetry.lock
- name: Install dependencies
run: poetry install --with dev,test,lint
lint:
needs: build
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0b51ceb

Please sign in to comment.