Skip to content

feat: upgrade supported python version #2671

feat: upgrade supported python version

feat: upgrade supported python version #2671

Workflow file for this run

name: Tests and Linters 🧪
on: [ pull_request ]
jobs:
tests-and-linters:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
timeout-minutes: 20
strategy:
matrix:
python-version: ["3.12", "3.11"]
os: [ubuntu-latest]
steps:
- name: Checkout mava
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Upgrade pip
run: pip install --upgrade pip
- name: Install python dependencies 🔧
run: pip install .[dev]
- name: Run linters 🖌️
run: pre-commit run --all-files --verbose