From ece13dc744b467a3d0358c88faee0eb77cd601a0 Mon Sep 17 00:00:00 2001 From: Javier-Tan <47554099+Javier-Tan@users.noreply.github.com> Date: Sun, 31 Mar 2024 18:17:03 +1100 Subject: [PATCH] Update github actions to always run tests --- .github/workflows/python-app.yml | 1 + docs/data_storage.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index aea2915..6d1c13a 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -33,6 +33,7 @@ jobs: - name: Lint with ruff uses: chartboost/ruff-action@v1 + continue-on-error: true - name: Test with pytest run: | diff --git a/docs/data_storage.md b/docs/data_storage.md index 6e5176e..c63adcc 100644 --- a/docs/data_storage.md +++ b/docs/data_storage.md @@ -3,7 +3,7 @@ trnsaction ( t_id INTEGER PRIMARY KEY NOT NULL, date INTEGER NOT NULL DEFAULT '0', - category TEXT NOT NULL DEFAULT "Uncategorised" REFERENCES trnsactino_categories(category), + category TEXT NOT NULL DEFAULT "Uncategorised" REFERENCES trnsaction_categories(category), description TEXT NULL, value INTEGER NOT NULL DEFAULT '0', cc_value INTEGER NOT NULL DEFAULT '0'