From 6fd46de01d238d3d492f348d96c26f8704476468 Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek Date: Tue, 18 Nov 2025 10:58:21 +0100 Subject: [PATCH] Fix failing actions Signed-off-by: Mateusz Gozdek --- .codespell.ignorewords | 1 + Makefile | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.codespell.ignorewords b/.codespell.ignorewords index 8dfd0ccd4..4fd9b27a7 100644 --- a/.codespell.ignorewords +++ b/.codespell.ignorewords @@ -1,2 +1,3 @@ ue decorder +NotIn diff --git a/Makefile b/Makefile index e16471faa..9bc1b27b0 100644 --- a/Makefile +++ b/Makefile @@ -85,12 +85,12 @@ codespell: ## Runs spell checking. $(CODESPELL_BIN) --skip $(CODESPELL_SKIP) --ignore-words .codespell.ignorewords --check-filenames --check-hidden .PHONY: test-up -test-up: ## Starts testing D-Bus instance in Docker container using docker-compose. - env UID=$$(id -u) docker-compose -f test/docker-compose.yml up -d +test-up: ## Starts testing D-Bus instance in Docker container using docker compose. + env UID=$$(id -u) docker compose -f test/docker-compose.yml up -d .PHONY: test-down test-down: ## Tears down testing D-Bus instance created by 'test-up'. - env UID=$$(id -u) docker-compose -f test/docker-compose.yml down + env UID=$$(id -u) docker compose -f test/docker-compose.yml down .PHONY: test-integration test-integration: test-up