Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

build(deps): update bitsandbytes requirement from ~=0.41.3 to ~=0.42.… #510

build(deps): update bitsandbytes requirement from ~=0.41.3 to ~=0.42.…

build(deps): update bitsandbytes requirement from ~=0.41.3 to ~=0.42.… #510

Workflow file for this run

name: Python
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: make install
- name: Lint with flake8
run: make lint
- name: Test with pytest
run: make test