We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34d1e7f commit 2cd41fdCopy full SHA for 2cd41fd
.github/workflows/DynamicPPL-CI.yml
@@ -0,0 +1,35 @@
1
+name: AdvancedMH-CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ version:
15
+ - '1.0'
16
+ - '1'
17
+ - 'nightly'
18
+ os:
19
+ - ubuntu-latest
20
+ - macOS-latest
21
+ - windows-latest
22
+ arch:
23
+ - x86
24
+ - x64
25
+ exclude:
26
+ - os: macOS-latest
27
+ arch: x86
28
+ steps:
29
+ - uses: actions/checkout@v2
30
+ - uses: julia-actions/setup-julia@v1
31
+ with:
32
+ version: ${{ matrix.version }}
33
+ arch: ${{ matrix.arch }}
34
+ - uses: julia-actions/julia-buildpkg@latest
35
+ - uses: julia-actions/julia-runtest@latest
0 commit comments