Fix CI: push properly formatted YAML workflow
This commit is contained in:
@@ -17,10 +17,12 @@ jobs:
|
||||
python-version: '3.11'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -e ".[dev]"
|
||||
run: |
|
||||
pip install -e ".[dev]"
|
||||
|
||||
- name: Run tests
|
||||
run: pytest tests/ -v
|
||||
run: |
|
||||
pytest tests/ -v
|
||||
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -39,7 +41,8 @@ jobs:
|
||||
pip install ruff
|
||||
|
||||
- name: Run linting
|
||||
run: ruff check src/
|
||||
run: |
|
||||
ruff check src/
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -54,10 +57,12 @@ jobs:
|
||||
python-version: '3.11'
|
||||
|
||||
- name: Install build dependencies
|
||||
run: pip install build
|
||||
run: |
|
||||
pip install build
|
||||
|
||||
- name: Build package
|
||||
run: python -m build
|
||||
run: |
|
||||
python -m build
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
Reference in New Issue
Block a user