Skip to content

point: add add and sub methods and camelCase distanceSquared #85

point: add add and sub methods and camelCase distanceSquared

point: add add and sub methods and camelCase distanceSquared #85

Workflow file for this run

name: CI - Zignal
on:
push:
paths:
- ".github/workflows/ci.yml"
- "**.zig"
- "**.zon"
pull_request:
paths:
- ".github/workflows/ci.yml"
- "**.zig"
- "**.zon"
jobs:
test:
strategy:
matrix:
include:
- zig-version: master
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Grab Zig
uses: mlugg/setup-zig@v1
with:
version: ${{ matrix.zig-version }}
- name: Native modules
run: |
make native
- name: Linux modules
run: |
make linux
- name: macOS modules
run: |
make macos
- name: Windows modules
run: |
make windows
- name: WebAssembly modules
run: |
make wasm
- name: Tests master
run: |
make test