Skip to content

[e57] parse e57 files containing index packets #13

[e57] parse e57 files containing index packets

[e57] parse e57 files containing index packets #13

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'README.md'
- 'docs/'
- 'ai/'
- 'AGENTS.md'
- '.claude/'
pull_request:
paths-ignore:
- 'README.md'
- 'docs/'
- 'ai/'
- 'AGENTS.md'
- '.claude/'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
run-build: sh ./build.sh
- os: windows-latest
run-build: .\build.cmd
- os: macos-latest
run-build: bash ./build.sh
steps:
- uses: actions/checkout@v4
- name: Install Dotnet
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.fsproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Build
run: ${{ matrix.run-build }}