mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-06 04:21:33 +00:00
Nodes and Elements
This commit is contained in:
+4
-1
@@ -10,4 +10,7 @@ notifications:
|
||||
# uncomment the following lines to override the default test script
|
||||
script:
|
||||
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
||||
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("JuliaFEM"); Pkg.test("JuliaFEM"; coverage=true)'
|
||||
- julia --check-bounds=yes -e 'Pkg.init(); Pkg.clone(pwd()); Pkg.build("JuliaFEM"); Pkg.test("JuliaFEM"; coverage=true)'
|
||||
after_success:
|
||||
- julia -e 'cd(Pkg.dir("JuliaFEM")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
module JuliaFEM
|
||||
|
||||
# package code goes here
|
||||
<<<<<<< HEAD
|
||||
type Node
|
||||
node_id
|
||||
coords
|
||||
@@ -9,6 +10,10 @@ end
|
||||
type Element
|
||||
element_id
|
||||
node_ids
|
||||
=======
|
||||
function test()
|
||||
return 1
|
||||
>>>>>>> 449851216b54d7b731c51df489af594afed19821
|
||||
end
|
||||
|
||||
end # module
|
||||
|
||||
Reference in New Issue
Block a user