Skip to content

Bump actions/setup-python from 4 to 5 #60

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #60

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@v3
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install black[jupyter] 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