Skip to content

Commit

Permalink
remove unfinished ci changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Frosty2500 committed Nov 15, 2024
1 parent 947d3ba commit 317ac0b
Showing 1 changed file with 0 additions and 44 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,47 +146,3 @@ jobs:
- name: Create source and wheel dist
run: |
python -m build
server-static-analysis:
# This job runs static code analysis, namely pycodestyle and mypy
# TODO: check shell scripts and Dockerfile with tools like ShellCheck and hadolint
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.X_PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.X_PYTHON_VERSION }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Check typing with MyPy
run: |
mypy app test
- name: Check code style with PyCodestyle
run: |
pycodestyle --count --max-line-length 120 app test
server-package:
# This job checks if we can build our server package
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.X_PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.X_PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Create source and wheel dist
run: |
python -m build

0 comments on commit 317ac0b

Please sign in to comment.