浏览代码

chore: validate Poetry configuration

pull/466/head
父节点
当前提交
baa88ccab4
找不到此签名对应的密钥 GPG 密钥 ID: 635A51D1506969F4
共有 1 个文件被更改,包括 15 次插入1 次删除
  1. +15
    -1
      .github/workflows/black.yml

+ 15
- 1
.github/workflows/black.yml 查看文件

@@ -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

正在加载...
取消
保存