Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
a_bondar committed Jan 4, 2025
1 parent 9fbb73a commit 5b69ae9
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install and configure Poetry
run: |
pip install -U pip poetry
poetry config virtualenvs.create false
- name: Install requirements
run: make deps
- name: Run lint
run: make lint

test:
runs-on: ubuntu-latest
strategy:
Expand All @@ -29,4 +45,4 @@ jobs:
- name: Install requirements
run: make deps
- name: Run ci
run: make ci
run: make test

0 comments on commit 5b69ae9

Please sign in to comment.