move_webui #35

Merged
brian merged 17 commits from move_webui into main 2024-05-21 16:19:33 +02:00
2 changed files with 2 additions and 5 deletions
Showing only changes of commit 4a6d0dbe09 - Show all commits
-2
View File
@@ -1,8 +1,6 @@
name: Code Quality Pipeline
run-name: ${{ gitea.actor }} is running the Code Quality Pipeline
runs-on: ubuntu-latest
on: push
image: python:3.12
jobs:
test:
name: Test
+2 -3
View File
@@ -1,6 +1,5 @@
name: CI Pipeline
run-name: ${{ gitea.actor }} is running the CI Pipeline
runs-on: ubuntu-latest
on:
pull_request:
branches:
@@ -23,10 +22,10 @@ jobs:
poetry install
- name: PEP8 Check
run: |
poetry run flake8 ./src --benchmark
poetry run flake8 . --benchmark
- name: Type Check
run: |
poetry run mypy ./src --disable-error-code=import-untyped
poetry run mypy . --disable-error-code=import-untyped
publish:
name: Build and Publish
runs-on: ubuntu-latest