Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kalmarek committed Jul 7, 2024
1 parent ecdff74 commit a50cf8b
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 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,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
Expand All @@ -46,21 +44,22 @@ jobs:
- name: Example C₂ linear action
shell: julia --project=examples {0}
run: |
include("examples/preamble.jl");
include("examples/ex_C2.linear.jl")
@info pwd()
include(joinpath(pwd(), "./examples/preamble.jl"));
include(joinpath(pwd(), "./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 a50cf8b

Please sign in to comment.