8000 Update softprops/action-gh-release digest to aec2ec5 · CodeLogicIncEngineering/codelogic-mcp-server@6cd3b01 · GitHub
[go: up one dir, main page]

Skip to content

Update softprops/action-gh-release digest to 6da8fa9 #66

Update softprops/action-gh-release digest to 6da8fa9

Update softprops/action-gh-release digest to 6da8fa9 #66

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.13]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install uv
uv pip install --system -e ".[dev]"
python -m pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings
flake8 . --count --exit-zero --max-complexity=10 --statistics
- name: Test with unittest
run: |
python -m unittest discover -s test -p "unit*.py" -v
0