From bc7c9c89faf475ce191039ca6457ef33e8217506 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Tue, 22 Oct 2024 11:44:25 +0200 Subject: [PATCH] test CI --- .forgejo/workflows/ci.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .forgejo/workflows/ci.yaml diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml new file mode 100644 index 0000000..2617f30 --- /dev/null +++ b/.forgejo/workflows/ci.yaml @@ -0,0 +1,27 @@ +on: [push] + +jobs: + test: + runs-on: docker + container: fedora:40 + steps: + - uses: actions/checkout@v4 + - run: sudo dnf install tox + - run: tox + + mypy: + runs-on: docker + container: fedora:40 + steps: + - uses: actions/checkout@v4 + - run: sudo dnf install tox + - run: tox -e mypy + + coverage: + runs-on: docker + container: fedora:40 + steps: + - uses: actions/checkout@v4 + - run: sudo dnf install tox + - run: tox -e coverage +