Skip to content

Merge pull request #53 from palewire/dependabot/pip/flake8-bugbear-24… #97

Merge pull request #53 from palewire/dependabot/pip/flake8-bugbear-24…

Merge pull request #53 from palewire/dependabot/pip/flake8-bugbear-24… #97

name: Continuous deployment
on:
push:
workflow_dispatch:
jobs:
lint-python:
name: Lint Python code
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v4
- id: setup-python
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pipenv'
- id: install-pipenv
name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
shell: bash
- id: install-python-dependencies
name: Install Python dependencies
run: pipenv install --dev --python=`which python`
shell: bash
- id: lint
name: Lint Python code
run: pipenv run flake8 ./ --verbose
shell: bash
mypy-python:
name: Static type check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- id: setup-python
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pipenv'
- id: install-pipenv
name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
shell: bash
- id: install-python-dependencies
name: Install Python dependencies
run: pipenv install --dev --python=`which python`
shell: bash
- id: mypy
name: Run mypy
run: pipenv run mypy ./ --ignore-missing-imports --verbose
shell: bash
test-python:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- id: setup-python
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pipenv'
- id: install-pipenv
name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
shell: bash
- id: install-python-dependencies
name: Install Python dependencies
run: pipenv install --dev --python=3.9
shell: bash
- id: tests
name: Run tests
run: pipenv run pytest
shell: bash