Add Pathfinder-based MCMC space transformation initialization #41
Workflow file for this run
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 | |
| env: | |
| JULIA_NUM_THREADS: 2 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| - 'releases/**' | |
| tags: '*' | |
| pull_request: | |
| release: | |
| workflow_dispatch: | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.version == 'nightly' }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.10' | |
| - '1' | |
| - 'pre' | |
| os: | |
| - ubuntu-latest | |
| arch: | |
| - x64 | |
| include: | |
| - version: 1 | |
| os: ubuntu-latest | |
| arch: x86 | |
| - version: 1 | |
| os: macOS-latest | |
| arch: arm64 | |
| - version: 1 | |
| os: windows-latest | |
| arch: x64 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - uses: julia-actions/cache@v3 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| with: | |
| coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }} | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' | |
| - uses: codecov/codecov-action@v7 | |
| if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: lcov.info | |
| test-optional: | |
| name: Optional ${{ matrix.optional-test }} - ${{ github.event_name }} | |
| runs-on: ubuntu-latest | |
| # Tests of poorly maintained or otherwise troublesome optional | |
| # dependencies run isolated and non-blocking: | |
| continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| optional-test: | |
| - nestedsamplers | |
| - ultranest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: '1' | |
| arch: x64 | |
| - uses: julia-actions/cache@v3 | |
| - name: Run tests | |
| run: >- | |
| julia --project=test/optional/${{ matrix.optional-test }} -e ' | |
| using Pkg; Pkg.instantiate(); | |
| include(joinpath("test", "optional", "${{ matrix.optional-test }}", "runtests.jl"))' | |
| docs: | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: '1' | |
| - uses: julia-actions/cache@v3 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-docdeploy@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Needed due to https://github.com/JuliaDocs/Documenter.jl/issues/1177 | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
| GKSwstype: 'nul' |