Skip to content

tools/svg2tvgt: save/restore co-ordinates when starting/closing paths #59

tools/svg2tvgt: save/restore co-ordinates when starting/closing paths

tools/svg2tvgt: save/restore co-ordinates when starting/closing paths #59

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main, zig-master]
pull_request:
branches: [main, zig-master]
jobs:
cross-build:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: master
- name: Install dotnet sdk
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Compile Tools
run: zig build install
- name: Compile Svg2TvgText
working-directory: src/tools/svg2tvgt/
run: dotnet build
- name: Run Testsuite
run: zig build test