forked from loafle/openapi-generator-original
Bumps [swift-actions/setup-swift](https://github.com/swift-actions/setup-swift) from 1 to 2. - [Release notes](https://github.com/swift-actions/setup-swift/releases) - [Commits](https://github.com/swift-actions/setup-swift/compare/v1...v2) --- updated-dependencies: - dependency-name: swift-actions/setup-swift 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>
50 lines
1.8 KiB
YAML
50 lines
1.8 KiB
YAML
name: Samples Swift
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/client/petstore/swift5/**
|
|
pull_request:
|
|
paths:
|
|
- samples/client/petstore/swift5/**
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest]
|
|
sample:
|
|
- samples/client/petstore/swift5/alamofireLibrary
|
|
- samples/client/petstore/swift5/anycodableLibrary
|
|
- samples/client/petstore/swift5/asyncAwaitLibrary
|
|
- samples/client/petstore/swift5/combineLibrary
|
|
- samples/client/petstore/swift5/default
|
|
- samples/client/petstore/swift5/deprecated
|
|
- samples/client/petstore/swift5/frozenEnums
|
|
- samples/client/petstore/swift5/nonPublicApi
|
|
- samples/client/petstore/swift5/objcCompatible
|
|
- samples/client/petstore/swift5/oneOf
|
|
- samples/client/petstore/swift5/promisekitLibrary
|
|
- samples/client/petstore/swift5/readonlyProperties
|
|
- samples/client/petstore/swift5/resultLibrary
|
|
- samples/client/petstore/swift5/rxswiftLibrary
|
|
- samples/client/petstore/swift5/urlsessionLibrary
|
|
- samples/client/petstore/swift5/validation
|
|
# NOTE: disabled as vaporLibrary doesnt build when adding this CI config
|
|
#- samples/client/petstore/swift5/vaporLibrary
|
|
- samples/client/petstore/swift5/x-swift-hashable
|
|
include:
|
|
- os: ubuntu-latest
|
|
sample: samples/client/petstore/swift5/alamofireLibrary
|
|
name: Build Swift samples
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: swift-actions/setup-swift@v2
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
with:
|
|
swift-version: '5'
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: swift build |