Skip to content

Change Swift demo app to use the released polyline package. #17

Change Swift demo app to use the released polyline package.

Change Swift demo app to use the released polyline package. #17

Workflow file for this run

name: build-swift
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
# cancel jobs on PRs only
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v