diff options
-rw-r--r-- | .github/workflows/format.yml | 21 | ||||
-rwxr-xr-x | ci.sh | 7 | ||||
-rw-r--r-- | readme.md | 7 | ||||
-rw-r--r-- | src/main.py | 11 |
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 @@ -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') @@ -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() |