Skip to content

Upgrade to Python 3.11 #142

Upgrade to Python 3.11

Upgrade to Python 3.11 #142

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: |
echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
- uses: actions/setup-python@v3
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Pipenv
run: pip install pipenv
- name: Install virtual environment with dev dependencies
run: make install-dev
- name: Running lint tests
run: make lint