Sfoglia il codice sorgente

chore: validate Poetry configuration

pull/466/head
Jérôme Deuchnord 2 settimane fa
parent
commit
baa88ccab4
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 635A51D1506969F4
1 ha cambiato i file con 15 aggiunte e 1 eliminazioni
  1. +15
    -1
      .github/workflows/black.yml

+ 15
- 1
.github/workflows/black.yml Vedi File

@@ -1,4 +1,4 @@
name: Code style
name: Checks

on:
push:
@@ -17,3 +17,17 @@ jobs:
with:
python-version: '3.x'
- uses: psf/black@stable

poetry-check:
runs-on: ubuntu-latest

name: Poetry
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.x'
- run: |
pip install -U pip poetry
poetry install
- run: poetry check --strict

Caricamento…
Annulla
Salva