Thanks to visit codestin.com
Credit goes to github.com

Skip to content

QKAN Core Upgrade with dtype Management, Usability Enhancements, and Expanded Dependencies #62

QKAN Core Upgrade with dtype Management, Usability Enhancements, and Expanded Dependencies

QKAN Core Upgrade with dtype Management, Usability Enhancements, and Expanded Dependencies #62

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependency
run: |
pip install -r requirements-dev.txt
pip install -r requirements.txt
- name: Lint
run: make lint