Skip to content

Bump codecov/codecov-action from 4 to 5 #87

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #87

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
container: coady/pylucene
steps:
- uses: actions/checkout@v4
- run: pip install -r tests/requirements.in
- run: make check
- run: coverage xml
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install ruff mypy
- run: make lint
docs:
runs-on: ubuntu-latest
container: coady/pylucene
steps:
- uses: actions/checkout@v4
- run: pip install -r docs/requirements.in
- run: make html