Skip to content

Add renovate.json

Add renovate.json #62

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: setup-xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 11.6
- name: Install xcpretty
run: gem install xcpretty
- name: Show Xcode version
run: xcodebuild -version
- name: Build
run: make build | xcpretty
- name: Test
run: make test
- name: Upload coverage information
run: bash <(curl -s https://codecov.io/bash)
- name: Dist
run: make dist