From 55b45b85eccfa9bb8194f0299c4e5402018f9938 Mon Sep 17 00:00:00 2001 From: Thorge Petersen <petersen@rz.uni-kiel.de> Date: Thu, 9 Jan 2025 13:06:40 +0100 Subject: [PATCH] docs: fixed year in latest changelog entry --- CHANGELOG.md | 2 +- docker-compose.yaml | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 docker-compose.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 341a8bf..cda2fb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.1.0] - 2024-01-09 +## [1.1.0] - 2025-01-09 ### Added diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..2bf1a85 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,28 @@ +version: '3.8' +services: + lint: + image: node + command: > + sh -c " + npm install -g markdownlint markdownlint-cli && + markdownlint '**/*.md' --ignore node_modules | tee lint.log + " + volumes: + - .:/app + - /app/node_modules + ruff: + image: python:3.10 + command: > + bash -c " + apt-get update && + apt-get install -y libgdal-dev && + python3 -m pip install --user pipx && + python3 -m pipx ensurepath && + source ~/.bashrc && + pipx install poetry && + poetry install && + poetry run ruff check . + " + volumes: + - .:/app + working_dir: /app -- GitLab