We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc5d09 commit a0cc3f0Copy full SHA for a0cc3f0
.github/workflows/samples-python-client-echo-api.yaml
@@ -7,6 +7,18 @@ on:
7
- samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/**
8
- .github/workflows/samples-python-client-echo-api.yaml
9
jobs:
10
+ validate-pyproject-toml:
11
+ name: Validate pyproject.toml
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: "3.13"
18
+ - name: Install validator
19
+ run: pip install 'validate-pyproject[all]'
20
+ - name: Validate
21
+ run: validate-pyproject samples/client/echo_api/python/pyproject.toml
22
build:
23
name: Test Python client
24
runs-on: ubuntu-latest
0 commit comments