Implement Repository contents API #197
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: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
macOS: | |
name: Test macOS | |
runs-on: macOS-latest | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.4.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: Lint | |
run: swift package plugin --allow-writing-to-package-directory swiftformat --lint | |
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 | |