Skip to content

Commit 4c304fb

Browse files
Shiwei HuShiwei Hu
authored andcommitted
Initial version for 2D FSI
1 parent 525ea88 commit 4c304fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+95928
-28
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on: [push, pull_request]
3+
4+
jobs:
5+
test:
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest, macos-latest, windows-latest]
10+
julia-version: ['1.10', '1.11', 'nightly']
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: julia-actions/setup-julia@v1
16+
with:
17+
version: ${{ matrix.julia-version }}
18+
19+
- name: Install dependencies
20+
run: julia --project=@. -e 'using Pkg; Pkg.instantiate()'
21+
22+
- name: Run tests
23+
run: julia --project=@. -e 'using Pkg; Pkg.test()'
24+
25+

.gitignore

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,2 @@
1-
# Files generated by invoking Julia with --code-coverage
2-
*.jl.cov
3-
*.jl.*.cov
4-
5-
# Files generated by invoking Julia with --track-allocation
6-
*.jl.mem
7-
8-
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
9-
# They contain absolute paths specific to the host computer, and so should not be committed
10-
deps/deps.jl
11-
deps/build.log
12-
deps/downloads/
13-
deps/usr/
14-
deps/src/
15-
16-
# Build artifacts for creating documentation generated by the Documenter package
17-
docs/build/
18-
docs/site/
19-
20-
# File generated by Pkg, the package manager, based on a corresponding Project.toml
21-
# It records a fixed state of all packages used by the project. As such, it should not be
22-
# committed for packages, but should be committed for applications that require a static
23-
# environment.
24-
Manifest*.toml
25-
26-
# File generated by the Preferences package to store local preferences
27-
LocalPreferences.toml
28-
JuliaLocalPreferences.toml
1+
Manifest.toml
2+
.DS_Store

0 commit comments

Comments
 (0)