Skip to content

adding small bear ORSO logo (for favicon etc.) #249

adding small bear ORSO logo (for favicon etc.)

adding small bear ORSO logo (for favicon etc.) #249

Workflow file for this run

name: Code Format Check
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Lint
run: |
flake8 --max-line-length=120 --ignore=F401,W503,E203 --count --show-source --statistics orsopy