-
Notifications
You must be signed in to change notification settings - Fork 6
46 lines (46 loc) · 1.41 KB
/
IntegrationTests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: IntegrationTest
on:
push:
branches: [main]
tags: [v*]
pull_request:
jobs:
test:
name: ${{ matrix.downgrade && 'Downgrade / ' || '' }}${{ matrix.package }} - Julia ${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [1]
package:
- DynamicHMC
- AdvancedHMC
- Turing
downgrade:
- true
- false
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: x64
- uses: julia-actions/[email protected]
with:
skip: LinearAlgebra,Pathfinder,Random,Statistics,Folds,Transducers
projects: ., test/integration/${{ matrix.package }}
if: ${{ matrix.downgrade }}
name: Downgrade dependencies to oldest supported versions
- uses: julia-actions/julia-buildpkg@v1
- run: |
julia --code-coverage=user -e '
using Pkg
test_path = joinpath(pwd(), "test", "integration", "${{ matrix.package }}")
Pkg.activate(test_path)
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
include(joinpath(test_path, "runtests.jl"))'
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
files: lcov.info