Skip to content

Add flag to disable EpoxySwiftUIHostingController keyboard avoidance #609

Add flag to disable EpoxySwiftUIHostingController keyboard avoidance

Add flag to disable EpoxySwiftUIHostingController keyboard avoidance #609

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-package:
runs-on: macos-latest
strategy:
matrix:
xcode:
- '14.1' # Swift 5.7 (lowest)
- '15.2' # Swift 5.9.2 (highest)
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
xcode: ${{ matrix.xcode }}
- name: Build Package
run: bundle exec rake build:package
build-epoxy-core:
runs-on: macos-latest
strategy:
matrix:
xcode:
- '15.2' # Swift 5.9.2 (highest)
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
xcode: ${{ matrix.xcode }}
- name: Build EpoxyCore
run: bundle exec rake build:EpoxyCore
build-example:
runs-on: macos-latest
strategy:
matrix:
xcode:
- '14.1' # Swift 5.7 (lowest)
- '15.2' # Swift 5.9.2 (highest)
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
xcode: ${{ matrix.xcode }}
- name: Build Example
run: bundle exec rake build:example
test-package:
runs-on: macos-latest
strategy:
matrix:
xcode:
- '14.1' # Swift 5.7 (lowest)
- '15.2' # Swift 5.9.2 (highest)
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
xcode: ${{ matrix.xcode }}
- name: Test Package
run: bundle exec rake test:package
lint-swift:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
- name: Lint Swift
run: bundle exec rake lint:swift
lint-podspec:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
- name: Lint Podspec
run: bundle exec rake lint:podspec