Merge pull request #274 from TzuYaoHuang/fix/DotInPeriodicBC #1069
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: CI | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/ci.yml' | |
| - 'ext/**' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'Project.toml' | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| paths: | |
| - '.github/workflows/ci.yml' | |
| - 'ext/**' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'Project.toml' | |
| jobs: | |
| test: | |
| if: github.event.pull_request.draft == false | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.nthreads }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.11' | |
| - '1.12' | |
| os: | |
| - ubuntu-latest | |
| - macOS-latest | |
| - windows-latest | |
| arch: | |
| - x64 | |
| nthreads: | |
| - '1' | |
| - 'auto' | |
| exclude: | |
| - os: macOS-latest | |
| arch: x86 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-artifacts | |
| with: | |
| path: ~/.julia/artifacts | |
| key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-test-${{ env.cache-name }}- | |
| ${{ runner.os }}-test- | |
| ${{ runner.os }}- | |
| - name: WaterLily tests | |
| env: | |
| JULIA_NUM_THREADS: ${{ matrix.nthreads }} | |
| shell: bash | |
| run: | | |
| if [ "${{ matrix.nthreads }}" = "auto" ] | |
| then | |
| printf "[WaterLily]\nbackend = \"KernelAbstractions\"" > LocalPreferences.toml | |
| else | |
| printf "[WaterLily]\nbackend = \"SIMD\"" > LocalPreferences.toml | |
| fi | |
| julia --proj --color=yes -e "using Pkg; Pkg.instantiate(); Pkg.test(; coverage=true);" | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| file: lcov.info | |
| docs: | |
| if: github.event.pull_request.draft == false | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| - run: | | |
| julia --project=docs -e ' | |
| using Pkg | |
| Pkg.develop(PackageSpec(path=pwd())) | |
| Pkg.instantiate()' | |
| - run: | | |
| julia --project=docs -e ' | |
| using Documenter: doctest | |
| using WaterLily | |
| doctest(WaterLily)' | |
| - run: julia --project=docs docs/make.jl | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |