Update README.md #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
deutschland_generation: | |
name: "Deutschland Generation" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.11.1'] | |
steps: | |
- uses: actions/checkout@v2 | |
# Runs a single command using the runners shell | |
- name: "Lint file" | |
uses: stoplightio/[email protected] | |
with: | |
file_glob: "openapi.yaml" | |
- name: "Generate deutschland code" | |
uses: wirthual/deutschland-generator-action@latest | |
with: | |
openapi-file: ${{ github.workspace }}/openapi.yaml | |
upload-to-pypi: false | |
use-testpypi: false | |
pypi-token: ${{ secrets.PYPI_PRODUCTION }} | |
python-version: ${{ matrix.python-version }} |