Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrnr committed Nov 18, 2024
1 parent 7dd5617 commit 52dd99b
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ on:
branches:
- main

env:
UV_SYSTEM_PYTHON: 1

jobs:
build:
runs-on: ${{ matrix.os }}
Expand All @@ -25,17 +22,15 @@ jobs:
- name: Setup uv
uses: astral-sh/setup-uv@v3
- name: Install Python ${{ matrix.python-version }}
run: |
uv python install ${{ matrix.python-version }}
uv pip install -e ".[dev]"
run: uv python install ${{ matrix.python-version }}
- name: Install libsndfile
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get install -y libsndfile1
- name: Run tests
run: pytest
run: uv run pytest
- name: Check source code format
run: black --check --diff .
run: uv run black --check --diff .

test-deb10-i386:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 52dd99b

Please sign in to comment.