Add pagination to PullRequests #157
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
name: "RequestKit CI" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
macOS: | |
name: Test macOS | |
runs-on: macOS-latest | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer | |
strategy: | |
matrix: | |
include: | |
- lane: test | |
env: osx | |
- lane: test | |
env: ios | |
- lane: test | |
env: tvos | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install | |
run: | | |
gem install bundler | |
bundle install | |
- name: test | |
run: | | |
set -o pipefail | |
bundle exec fastlane ${{ matrix.lane }} --env ${{ matrix.env }} | |
- uses: codecov/codecov-action@v1 | |
spm: | |
name: Test with SPM | |
runs-on: ubuntu-latest | |
container: swift:5.6-focal | |
steps: | |
- uses: actions/checkout@v2 | |
- name: SPM Test | |
run: swift test --enable-test-discovery | |
spm_concurrency: | |
name: Test with SPM (check Swift Concurrency support) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
swift_version: | |
- 5.5.1 | |
- 5.5.2 | |
fail-fast: false | |
container: swift:${{ matrix.swift_version }}-focal | |
steps: | |
- uses: actions/checkout@v2 | |
- name: SPM Test | |
run: swift test --enable-test-discovery | |
swiftformat: | |
name: Linting | |
runs-on: ubuntu-latest | |
container: swift:5.6-focal | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install SwiftFormat | |
run: | | |
git clone https://github.com/nicklockwood/SwiftFormat.git | |
cd SwiftFormat | |
swift build -c release | |
- name: Lint | |
run: | | |
cd SwiftFormat | |
swift run -c release swiftformat ../ --lint --exclude . | |
cli_build: | |
name: Build CLI | |
runs-on: ubuntu-latest | |
container: swift:5.7-focal | |
steps: | |
- uses: actions/checkout@v2 | |
- name: SPM Test | |
working-directory: OctoKitCLI | |
run: swift run OctoKitCLI --help | |