updated workflows
Code Quality Pipeline / Test (push) Successful in 4m17s
CI Pipeline / Test (pull_request) Successful in 4m16s
CI Pipeline / Build and Publish (pull_request) Failing after 12s

This commit is contained in:
Brian Bjarke Jensen
2024-05-20 20:19:40 +02:00
parent fd9140093d
commit 4a6d0dbe09
2 changed files with 2 additions and 5 deletions
+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