Skip to content

Rename all folders and redo table #8

Rename all folders and redo table

Rename all folders and redo table #8

Workflow file for this run

name: Run Julia scripts
on:
push:
# The CI is executed on every push on to main
branches:
- main
pull_request:
# The CI is executed on every pull request to the main branch
branches:
- main
schedule:
# The CI is executed every day at 8am
- cron: "0 8 * * *"
workflow_dispatch:
# The CI is executed manually
jobs:
run-script:
runs-on: ubuntu-latest
container:
image: julia:latest
steps:
- uses: actions/checkout@v4
- name: Run Finite Difference
working-directory: ./examples/obstacle
run: julia finite_difference.jl
- name: Run Spectral method
working-directory: ./examples/obstacle
run: julia spectral.jl
- name: Run thermoform
working-directory: ./examples/thermoforming_qvi
run: julia thermoforming_lvpp.jl