Skip to content

LF-52351 Adding ci

LF-52351 Adding ci #1

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repo
uses: "actions/checkout@v2"
- name: Setup Python
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: python -m pip install .[dev]
- name: "Run tox targets"
run: "python -m tox"