Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
emp7yhead committed Aug 17, 2024
1 parent dae8742 commit 66a4031
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,24 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Setup Poetry
run: pip install rye
# FIX: rye in ci
# - name: Setup Rye
# run: pip install rye

- name: Install dependencies
run: make install
run: pip install --no-cache-dir -r requirements.lock

- name: Apply migrations
run: make migrate
run: alembic upgrade head

- name: Run check
run: make check
run: ruff check

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: true
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
# file: ./coverage.xml
# fail_ci_if_error: true

build:
needs: test_and_lint
Expand Down

0 comments on commit 66a4031

Please sign in to comment.