Delete .gitea/workflows/default.yaml
CI Pipeline / Test (pull_request) Successful in 4m15s
CI Pipeline / Build and Publish (./Dockerfile.model, ${{ vars.docker_repo_url }}/${{ gitea.repository }}/model) (pull_request) Successful in 14s
CI Pipeline / Build and Publish (./Dockerfile.web_ui, ${{ vars.docker_repo_url }}/${{ gitea.repository }}/web_ui) (pull_request) Successful in 14s
CI Pipeline / Test (pull_request) Successful in 4m15s
CI Pipeline / Build and Publish (./Dockerfile.model, ${{ vars.docker_repo_url }}/${{ gitea.repository }}/model) (pull_request) Successful in 14s
CI Pipeline / Build and Publish (./Dockerfile.web_ui, ${{ vars.docker_repo_url }}/${{ gitea.repository }}/web_ui) (pull_request) Successful in 14s
This commit is contained in:
@@ -1,25 +0,0 @@
|
|||||||
name: Code Quality Pipeline
|
|
||||||
run-name: ${{ gitea.actor }} is running the Code Quality Pipeline
|
|
||||||
on: push
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: Test
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Setup Environment
|
|
||||||
uses: https://github.com/actions/setup-python@v3
|
|
||||||
with:
|
|
||||||
python-verison: "3.12"
|
|
||||||
architecture: "x64"
|
|
||||||
- name: Install Packages
|
|
||||||
run: |
|
|
||||||
pip install poetry
|
|
||||||
poetry install
|
|
||||||
- name: PEP8 Check
|
|
||||||
run: |
|
|
||||||
poetry run flake8 . --benchmark
|
|
||||||
- name: Type Check
|
|
||||||
run: |
|
|
||||||
poetry run mypy .
|
|
||||||
Reference in New Issue
Block a user