Skip to content

Commit aedb932

Browse files
committed
Switched CI from TravisCI to GitHub Actions.
1 parent 14a8224 commit aedb932

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build and test
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build-and-run-unit-tests:
13+
runs-on: macos-13
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: macOS
17+
run: make ci-macos
18+
- name: iOS
19+
run: make ci-ios
20+
check-dist:
21+
needs: build-and-run-unit-tests
22+
runs-on: macos-13
23+
steps:
24+
- uses: actions/checkout@v3
25+
- name: SwiftPM
26+
run: make ci-swiftpm

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)