Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kalmarek committed Jul 5, 2024
1 parent ecdff74 commit d8e8e54
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ jobs:
strategy:
matrix:
version:
- '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
Expand All @@ -35,32 +33,35 @@ 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
Pkg.add([
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")

0 comments on commit d8e8e54

Please sign in to comment.