Skip to content

Commit

Permalink
Switched CI from TravisCI to GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed Oct 4, 2023
1 parent 14a8224 commit aedb932
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build-and-run-unit-tests:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: macOS
run: make ci-macos
- name: iOS
run: make ci-ios
check-dist:
needs: build-and-run-unit-tests
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: SwiftPM
run: make ci-swiftpm
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit aedb932

Please sign in to comment.