Skip to content

ci: Remove black check with poetry #3

ci: Remove black check with poetry

ci: Remove black check with poetry #3

Workflow file for this run

name: ci
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
# Installs compression deps
sudo apt-get install -y pbzip2 pigz lzop liblz4-tool libgpgme11-dev
# Installs poetry
curl -sSL https://install.python-poetry.org | python3 -
poetry install -n
- name: Run tests
run: poetry run python -m unittest -bv
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable