Merge pull request #438 from JuliaPhysics/boggs #1299
This file contains 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: | |
push: | |
branches: | |
- main | |
- dev | |
- 'releases/**' | |
tags: '*' | |
pull_request: | |
release: | |
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 == 'pre' }} | |
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: x64 | |
- version: 1 | |
os: windows-latest | |
arch: x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- name: Add LegendJuliaRegistry | |
run: julia -e 'using Pkg; Pkg.Registry.add("General"); Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/legend-exp/LegendJuliaRegistry"))' | |
shell: bash | |
- uses: julia-actions/julia-buildpkg@v1 | |
env: | |
PYTHON: 'Conda' | |
- name: Remove Geant4 on x86 | |
run: julia --project="test" -e 'using Pkg; Pkg.rm("Geant4")' | |
shell: bash | |
if: matrix.arch == 'x86' | |
- 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@v5 | |
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' | |
with: | |
files: lcov.info | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
env: | |
PYTHON: 'Conda' | |
- 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' |