Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Run tests

on:
push:
branches:
- master
- main
pull_request:

# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['lts', '1', 'pre']
julia-arch: [x64, x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
exclude:
- os: macOS-latest
julia-arch: x86

steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
40 changes: 22 additions & 18 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,30 @@ Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"

[compat]
AbstractTrees = "0.3, 0.4"
Clipper = "0.6"
Colors = "0.12"
DataStructures = "0.17, 0.18"
FastClosures = "0.3"
FileIO = "1.11"
FixedPointNumbers = "0.8"
GLPK = "0.14, 1"
HypergeometricFunctions = "0.3.8"
IGLWrap_jll = "0.1.3"
Makie = "0.14, 0.17"
Polyhedra = "0.6, 0.7"
Rotations = "1.0.4"
StaticArrays = "1"
Triangulate = "2"
Unitful = "1.9"
julia = "1.6"
AbstractTrees = "0.4.5"
Clipper = "0.6.3"
Colors = "0.13.1"
DataStructures = "0.18.22"
FastClosures = "0.3.2"
FileIO = "1.17.0"
FixedPointNumbers = "0.8.5"
GLMakie = "0.13.4"
GLPK = "1.2.1"
HypergeometricFunctions = "0.3.28"
IGLWrap_jll = "2.6.0"
LinearAlgebra = "1.11.0"
Makie = "0.24.4"
Polyhedra = "0.8.1"
Printf = "1.11.0"
Rotations = "1.7.1"
StaticArrays = "1.9.14"
Triangulate = "3.0.0"
Unitful = "1.24.0"
julia = "1.10"

[extras]
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["GLMakie", "Test"]
Loading