Skip to content

Update benbusby/whoogle-search Docker tag to v0.9.0 #2291

Update benbusby/whoogle-search Docker tag to v0.9.0

Update benbusby/whoogle-search Docker tag to v0.9.0 #2291

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5 # it will resolve from the .python-version file
with:
cache: poetry # it will automatically detect poetry config and cache .venv
# https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages
- run: poetry install
- name: Lint
run: make lint-py
- name: Test
run: make test