From d8e8e54112f961932a8f4e6fc314fc66cdd29c42 Mon Sep 17 00:00:00 2001 From: Marek Kaluba Date: Fri, 5 Jul 2024 23:15:21 +0200 Subject: [PATCH] fix --- .github/workflows/examples.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 92e4dc9..8910534 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -9,9 +9,7 @@ jobs: strategy: matrix: version: - - '1.6' - '1' - - 'nightly' os: - ubuntu-latest arch: @@ -35,7 +33,7 @@ jobs: ${{ runner.os }}-test-${{ env.cache-name }}- ${{ runner.os }}-test- ${{ runner.os }}- - - name: Example project instantiation + - name: Examples project instantiation shell: julia --project=examples {0} run: | using Pkg @@ -43,24 +41,27 @@ jobs: PackageSpec(name="StarAlgebras", rev="main"), ]) Pkg.instantiate() + @info pwd() + using SymbolicWedderburn + @info Pkg.pathof(SymbolicWedderburn) - name: Example C₂ linear action shell: julia --project=examples {0} run: | - include("examples/preamble.jl"); - include("examples/ex_C2.linear.jl") + include("./examples/preamble.jl"); + include("./examples/ex_C2.linear.jl") - name: Example a polynomial with Sym(4)-symmetry shell: julia --project=examples {0} run: | - include("examples/preamble.jl"); - include("examples/ex_S4.jl") + include("./examples/preamble.jl"); + include("./examples/ex_S4.jl") - name: Example Motzkin polynomial shell: julia --project=examples {0} run: | - include("examples/preamble.jl"); - include("examples/ex_motzkin.jl") + include("./examples/preamble.jl"); + include("./examples/ex_motzkin.jl") - name: Example Robinson Form shell: julia --project=examples {0} run: | - include("examples/preamble.jl"); - include("examples/ex_robinson_form.jl") + include("./examples/preamble.jl"); + include("./examples/ex_robinson_form.jl")