-
Notifications
You must be signed in to change notification settings - Fork 128
76 lines (73 loc) · 1.77 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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