diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 42b24efa..e1dfb7a1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - version: ['1.11', '1'] + version: ['1.11', '1', 'pre'] # 'lts' not supported as public is used os: ['ubuntu-latest'] include: - os: windows-latest @@ -70,3 +70,4 @@ jobs: DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} GKSwstype: '100' run: julia --project=docs --color=yes docs/make.jl + diff --git a/docs/src/literate_tutorials/incompressible_elasticity.jl b/docs/src/literate_tutorials/incompressible_elasticity.jl index 9e8a0c37..12b5b8bf 100644 --- a/docs/src/literate_tutorials/incompressible_elasticity.jl +++ b/docs/src/literate_tutorials/incompressible_elasticity.jl @@ -112,7 +112,7 @@ function solve(;ν, ipu, ipp) u = Symmetric(K) \ f; # Solve the equation system ## Export the results - filename = "cook_" * (isa(ipu, Lagrange{2,RefTetrahedron,1}) ? "linear" : "quadratic") * + filename = "cook_" * (Ferrite.getorder(ipu) == 1 ? "linear" : "quadratic") * "_linear" VTKGridFile(filename, dh) do vtk write_solution(vtk, dh, u)