|
1 | | -name: IntegrationTest |
| 1 | +name: "IntegrationTest" |
2 | 2 | on: |
3 | 3 | push: |
4 | | - branches: [main] |
5 | | - tags: [v*] |
6 | | - pull_request: |
7 | | - |
| 4 | + branches: |
| 5 | + - "main" |
| 6 | + tags: |
| 7 | + - "v*" |
| 8 | + pull_request: ~ |
8 | 9 | jobs: |
9 | 10 | test: |
10 | | - name: ${{ matrix.package.repo }} |
11 | | - runs-on: ${{ matrix.os }} |
| 11 | + name: "${{ matrix.package.repo }}" |
| 12 | + runs-on: "${{ matrix.os }}" |
12 | 13 | strategy: |
13 | 14 | fail-fast: false |
14 | 15 | matrix: |
15 | | - julia-version: [1] |
16 | | - os: [ubuntu-latest] |
| 16 | + julia-version: |
| 17 | + - 1 |
| 18 | + os: |
| 19 | + - "ubuntu-latest" |
17 | 20 | package: |
18 | | - - {user: ITensor, repo: ITensorGaussianMPS.jl} |
19 | | - - {user: ITensor, repo: ITensorMPS.jl} |
20 | | - - {user: ITensor, repo: ITensorUnicodePlots.jl} |
21 | | - - {user: ITensor, repo: ITensorVisualizationBase.jl} |
22 | | - |
| 21 | + - user: "ITensor" |
| 22 | + repo: "ITensorGaussianMPS.jl" |
| 23 | + - user: "ITensor" |
| 24 | + repo: "ITensorMPS.jl" |
| 25 | + - user: "ITensor" |
| 26 | + repo: "ITensorUnicodePlots.jl" |
| 27 | + - user: "ITensor" |
| 28 | + repo: "ITensorVisualizationBase.jl" |
23 | 29 | steps: |
24 | | - - uses: actions/checkout@v6 |
25 | | - - uses: julia-actions/setup-julia@v2 |
| 30 | + - uses: "actions/checkout@v6" |
| 31 | + - uses: "julia-actions/setup-julia@v2" |
26 | 32 | with: |
27 | | - version: ${{ matrix.julia-version }} |
28 | | - arch: x64 |
29 | | - - uses: julia-actions/julia-buildpkg@latest |
30 | | - - name: Clone Downstream |
31 | | - uses: actions/checkout@v6 |
| 33 | + version: "${{ matrix.julia-version }}" |
| 34 | + arch: "x64" |
| 35 | + - uses: "julia-actions/julia-buildpkg@latest" |
| 36 | + - name: "Clone Downstream" |
| 37 | + uses: "actions/checkout@v6" |
32 | 38 | with: |
33 | | - repository: ${{ matrix.package.user }}/${{ matrix.package.repo }} |
34 | | - path: downstream |
35 | | - - name: Load this and run the downstream tests |
36 | | - shell: julia --color=yes --project=downstream {0} |
| 39 | + repository: "${{ matrix.package.user }}/${{ matrix.package.repo }}" |
| 40 | + path: "downstream" |
| 41 | + - name: "Load this and run the downstream tests" |
| 42 | + shell: "julia --color=yes --project=downstream {0}" |
37 | 43 | run: | |
38 | 44 | using Pkg |
39 | 45 | try |
|
49 | 55 | @info "Not compatible with this release. No problem." exception=err |
50 | 56 | exit(0) # Exit immediately, as a success |
51 | 57 | end |
52 | | -## - uses: julia-actions/julia-processcoverage@v1 |
53 | | -## - uses: codecov/codecov-action@v4 |
54 | | -## with: |
55 | | -## token: ${{ secrets.CODECOV_TOKEN }} |
56 | | -## file: lcov.info |
57 | | -## fail_ci_if_error: true |
| 58 | + |
0 commit comments