Skip to content

Expose mat4 determinant and add test. Consolidate common calculations. #112

Expose mat4 determinant and add test. Consolidate common calculations.

Expose mat4 determinant and add test. Consolidate common calculations. #112

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
- run: zig build test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
- run: zig fmt --check build.zig src/*.zig example/build.zig example/build.zig.zon example/src/*.zig