Skip to content

Commit

Permalink
chore: tune CI with UV
Browse files Browse the repository at this point in the history
  • Loading branch information
aaltat committed Sep 18, 2024
1 parent 969501a commit 5a1575d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
pip install robotframework-browser
pip install --upgrade pip
pip install uv
uv pip install -r requirements-dev.txt --python ${{ matrix.python-version }} --system
uv pip install robotframework-browser --python ${{ matrix.python-version }} --system
- name: Lint files
run: |
rfbrowser init chromium
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
python-version: 3.12
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
pip install robotframework-browser
pip install --upgrade pip
pip install uv
uv pip install -r requirements-dev.txt
uv pip install robotframework-browser
- name: Lint files
run: inv lint
- name: Run unit tests
Expand Down

0 comments on commit 5a1575d

Please sign in to comment.