Skip to content

Change ParametricCurve offset(by:style:) to a reader-style operation #74

Change ParametricCurve offset(by:style:) to a reader-style operation

Change ParametricCurve offset(by:style:) to a reader-style operation #74

Workflow file for this run

name: dev
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
strategy:
matrix:
os: [macos-15, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: SwiftyLab/setup-swift@latest
- 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
- name: Run tests
if: matrix.os != 'windows-latest'
run: swift test -v