forked from loafle/openapi-generator-original
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
634 B
YAML
28 lines
634 B
YAML
name: Python Server
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/server/petstore/python-aiohttp-srclayout/**
|
|
pull_request:
|
|
paths:
|
|
- samples/server/petstore/python-aiohttp-srclayout/**
|
|
jobs:
|
|
build:
|
|
name: Test Python server
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# servers
|
|
- samples/server/petstore/python-aiohttp-srclayout/
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.7'
|
|
- name: Test
|
|
working-directory: ${{ matrix.sample }}
|
|
run: make test-all
|