Require peakfinder_σ_scaled
in sipm_simple_calibration
to be an integer
#70
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: Downgrade | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
paths-ignore: | |
- 'docs/**' | |
push: | |
branches: | |
- main | |
- dev | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: ['1.10', '1', 'pre'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
- 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-downgrade-compat@v1 | |
with: | |
skip: Pkg,TOML | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 |