From 4eeaa4f603a211c489280ca02c215ad2ad6d4ab9 Mon Sep 17 00:00:00 2001 From: olofvndrhr Date: Thu, 1 Feb 2024 15:50:55 +0100 Subject: [PATCH] add scheduled tests --- .gitea/workflows/scheduled.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/scheduled.yml diff --git a/.gitea/workflows/scheduled.yml b/.gitea/workflows/scheduled.yml new file mode 100644 index 0000000..7d130f7 --- /dev/null +++ b/.gitea/workflows/scheduled.yml @@ -0,0 +1,20 @@ +name: run scheduled tests + +on: + issue_comment: + + schedule: + - cron: "0 20 * * 6" + +jobs: + check-code-py311: + runs-on: python311 + steps: + - name: checkout code + uses: actions/checkout@v3 + + - name: install hatch + run: pip install -U hatch + + - name: run tests + run: hatch run default:test