Skip to content

drop black (#186)

drop black (#186) #235

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
env:
FORCE_COLOR: 1
PIP_ROOT_USER_ACTION: ignore
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
include:
- os: macos-latest # macos test
python-version: "3.11"
- os: windows-latest # windows test
python-version: "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install nox
- name: test the repository
run: nox