From c9136fbba5ac5bd394a9c164173b64e22a1b2950 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 9 Aug 2023 21:03:10 +0200 Subject: Added basic CI --- .github/workflows/format.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/format.yml (limited to '.github/workflows/format.yml') 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 -- cgit v1.2.3