aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/format.yml21
-rwxr-xr-xci.sh7
-rw-r--r--readme.md7
-rw-r--r--src/main.py11
4 files changed, 45 insertions, 1 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
new file mode 100644
index 0000000..61f1270
--- /dev/null
+++ b/.github/workflows/format.yml
@@ -0,0 +1,21 @@
+name: Format
+
+on: [push, pull_request]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: ["3.8", "3.9", "3.10"]
+ steps:
+ - uses: actions/checkout@master
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v3
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install black pylint mypy
+ - run: bash ci.sh
diff --git a/ci.sh b/ci.sh
new file mode 100755
index 0000000..259415e
--- /dev/null
+++ b/ci.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+set -e
+
+black --diff --check $(git ls-files '*.py')
+mypy --strict $(git ls-files '*.py')
+pylint $(git ls-files '*.py')
diff --git a/readme.md b/readme.md
index 0a69694..a84de7a 100644
--- a/readme.md
+++ b/readme.md
@@ -1 +1,6 @@
-# SWR2 Cooles Projekt
+# SWR2
+
+## CI
+
+To run the CI manually and not only on GitHub Actions, install `black`,
+`pylint` and `mypy` using `pip`. Then, run `./ci.sh`.
diff --git a/src/main.py b/src/main.py
new file mode 100644
index 0000000..7f79cbb
--- /dev/null
+++ b/src/main.py
@@ -0,0 +1,11 @@
+"""main module for main things"""
+
+
+def main() -> int:
+ """main function for mainier things"""
+ print("hello world")
+ return 0
+
+
+if __name__ == "__main__":
+ main()