-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (36 loc) · 1002 Bytes
/
ci.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
name: ci
on:
pull_request:
types: [ opened, synchronize ]
branches: [ develop ]
push:
branches: [ develop ]
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
jobs:
tests:
name: Test with Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14]
swift: ["5.5"]
steps:
- uses: actions/checkout@v2
- uses: fwal/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- name: Make install
run: make install
- name: Tests
run: make test
#
# CODECOV temporarily disabled due to issues running 'bundle install'
# with racc-1.6.0 with native extensions.
#
# - uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./test-reports/cobertura.xml
# fail_ci_if_error: true # optional (default = false)
# verbose: true # optional (default = false)