Add GitHub CI #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Swift | |
on: [push] | |
jobs: | |
macos: | |
name: macOS | |
runs-on: macos-latest | |
steps: | |
- name: Install Swift | |
uses: slashmo/[email protected] | |
with: | |
version: 6.0.3 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Swift Version | |
run: swift --version | |
- name: Install dependencies | |
run: brew install fontconfig | |
- name: Build (Debug) | |
run: swift build -c debug | |
- name: Build (Release) | |
run: swift build -c release | |
- name: Test (Debug) | |
run: swift test -c debug | |
linux: | |
name: Linux | |
strategy: | |
matrix: | |
swift: [6.0.3] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Swift | |
uses: slashmo/[email protected] | |
with: | |
version: ${{ matrix.swift }} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Swift Version | |
run: swift --version | |
- name: Install dependencies | |
run: sudo apt-get install -y libfontconfig-dev | |
- name: Build (Debug) | |
run: swift build -c debug | |
- name: Build (Release) | |
run: swift build -c release | |
- name: Test (Debug) | |
run: swift test -c debug |