fix: correct CI workflow directory paths from regex_humanizer/ to src/
Some checks failed
CI / test (push) Failing after 15s

This commit is contained in:
2026-02-02 20:28:21 +00:00
parent b69e18e1f7
commit f53f97c4fa

View File

@@ -11,45 +11,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Set up Python
uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
- run: pip install -e ".[dev]"
- name: Install dependencies - run: pytest tests/ -v
run: | - run: ruff check src/ tests/
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v
- name: Run linter
run: ruff check src/ tests/
- name: Run type check
run: mypy src/
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build dependencies
run: pip install build
- name: Build package
run: python -m build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/