From 03a74a8943b4dfed4089a03f76a89ca92b0a2247 Mon Sep 17 00:00:00 2001 From: profitroll Date: Fri, 29 Mar 2024 20:47:51 +0100 Subject: [PATCH 1/2] Added test action --- .gitea/workflows/tests.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitea/workflows/tests.yml diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml new file mode 100644 index 0000000..85a2df1 --- /dev/null +++ b/.gitea/workflows/tests.yml @@ -0,0 +1,32 @@ +name: Tests + +on: + push: + branches: + - dev + - main + tags-ignore: + - v* + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + env: + AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache + - name: Install dependencies + run: | + python -m pip install -r requirements.txt + - name: Test the build + run: mkdocs build -- 2.39.2 From 9b9cd3d93bc60335ab2743a633823166a3f0780a Mon Sep 17 00:00:00 2001 From: profitroll Date: Fri, 29 Mar 2024 20:51:14 +0100 Subject: [PATCH 2/2] Added a fix of TZ issue --- .gitea/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 85a2df1..2afb5dc 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -29,4 +29,4 @@ jobs: run: | python -m pip install -r requirements.txt - name: Test the build - run: mkdocs build + run: TZ=UTC mkdocs build -- 2.39.2