Skip to content

Fix python version ref #4

Fix python version ref

Fix python version ref #4

Workflow file for this run

name: Python Poetry and Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13.0-rc.2"
- "3.12.6"
- "3.11.10"
- "3.10.15"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Lint with Black
run: |
poetry run black --check click_datetime/