Skip to content

Add .editorconfig for consistent code formatting (#68) #125

Add .editorconfig for consistent code formatting (#68)

Add .editorconfig for consistent code formatting (#68) #125

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
macos:
name: macOS
runs-on: macOS-latest
strategy:
matrix:
xcode:
- '11.7'
- '12.4'
- '12.5.1'
- '13.0'
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: make test-swift
- name: Build release
run: swift build -c release
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: make test-linux