forked from loafle/openapi-generator-original
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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>
31 lines
640 B
YAML
31 lines
640 B
YAML
name: Samples cpp oat++ server
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "samples/server/petstore/cpp-oatpp/**"
|
|
pull_request:
|
|
paths:
|
|
- "samples/server/petstore/cpp-oatpp/**"
|
|
|
|
env:
|
|
GRADLE_VERSION: 6.9
|
|
|
|
jobs:
|
|
build:
|
|
name: Build cpp oat++ server
|
|
strategy:
|
|
matrix:
|
|
sample:
|
|
- samples/server/petstore/cpp-oatpp
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: cmake -B build && cmake --build build --verbose
|