Skip to content

Merge branch 'dev'

Merge branch 'dev' #34

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [macos-15, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: SwiftyLab/setup-swift@main
- uses: actions/checkout@v4
- name: Install Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libfontconfig1-dev
- name: Build
run: swift build -v