documentation overhaul + some show function and constructor improvements #36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ExtendableFEM Downstream Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: GitHub master | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
- run: | | |
julia --project -e ' | |
using Pkg | |
Pkg.add(url="https://github.com/WIAS-PDELib/ExtendableFEM.jl", rev="master") | |
Pkg.instantiate() | |
Pkg.test("ExtendableFEM")' |