Skip to content

Commit

Permalink
adjust workflow for frontend package installation test
Browse files Browse the repository at this point in the history
  • Loading branch information
M3NIX committed Oct 17, 2024
1 parent 1ae6c1b commit f869e8d
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/packages-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Backend Packages Test
name: Frontend Packages Test

on: # yamllint disable-line rule:truthy
push:
Expand All @@ -15,15 +15,20 @@ jobs:
test-poetry-package:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
submodules: true
- uses: actions/[email protected]
with:
submodules: true

- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: 3.11
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: 3.11

- name: Test poetry package installation
run: |
python -m pip install poetry && poetry install
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"

- name: Test uv package installation
run: uv venv && uv pip sync pyproject.toml
working-directory: frontend

0 comments on commit f869e8d

Please sign in to comment.