Skip to content

Update ghcr.io/dgtlmoon/changedetection.io Docker tag to v0.49.0 #2649

Update ghcr.io/dgtlmoon/changedetection.io Docker tag to v0.49.0

Update ghcr.io/dgtlmoon/changedetection.io Docker tag to v0.49.0 #2649

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@11bd71901bbe5b1630ceea73d27597364c9af683 # 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