-
Notifications
You must be signed in to change notification settings - Fork 129
51 lines (48 loc) · 1.16 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
name: "RequestKit CI"
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
spm:
name: Test with SPM
runs-on: ubuntu-latest
container: swift:5.10-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.10"
- "6.0"
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.10-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.10-focal
steps:
- uses: actions/checkout@v2
- name: SPM Test
working-directory: OctoKitCLI
run: swift run OctoKitCLI --help