File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -27,26 +27,25 @@ jobs:
27
27
os : ubuntu-latest
28
28
arch : x64
29
29
steps :
30
- - uses : actions/checkout@v3
31
- - uses : julia-actions/setup-julia@v1
30
+ - uses : actions/checkout@v4
31
+ - uses : julia-actions/setup-julia@v2
32
32
with :
33
33
version : ${{ matrix.version }}
34
34
arch : ${{ matrix.arch }}
35
- - uses : actions/cache@v1
36
- env :
37
- cache-name : cache-artifacts
38
- with :
39
- path : ~/.julia/artifacts
40
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
41
- restore-keys : |
42
- ${{ runner.os }}-test-${{ env.cache-name }}-
43
- ${{ runner.os }}-test-
44
- ${{ runner.os }}-
35
+ - uses : julia-actions/cache@v2
36
+ - name : MP
37
+ shell : julia --project=@. {0}
38
+ run : |
39
+ using Pkg
40
+ Pkg.add([
41
+ PackageSpec(name="MultivariatePolynomials", rev="master"),
42
+ ])
45
43
- uses : julia-actions/julia-buildpkg@v1
46
44
- uses : julia-actions/julia-runtest@v1
47
45
with :
48
46
depwarn : error
49
47
- uses : julia-actions/julia-processcoverage@v1
50
- - uses : codecov/codecov-action@v3
48
+ - uses : codecov/codecov-action@v4
51
49
with :
52
50
file : lcov.info
51
+ token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments