File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ jobs:
1212
1313 strategy :
1414 matrix :
15- deno : ["v1.x", "canary"]
15+ deno : ["v1.x", "v2.x", " canary"]
1616 os : [ubuntu-latest]
1717
1818 steps :
1919 - name : Setup repo
20- uses : actions/checkout@v2
20+ uses : actions/checkout@v4
2121
2222 - name : Setup Deno
23- uses : denoland/setup-deno@v1
23+ uses : denoland/setup-deno@v2
2424 with :
2525 deno-version : ${{ matrix.deno }}
2626
@@ -31,13 +31,13 @@ jobs:
3131 run : deno test
3232
3333 - name : Create coverage report
34- if : matrix.deno == 'v1 .x'
34+ if : matrix.deno == 'v2 .x'
3535 run : |
3636 deno test --coverage=.coverage
3737 deno coverage ./.coverage --lcov > coverage.lcov
3838
3939 - name : Upload coverage report
40- if : matrix.deno == 'v1 .x'
41- uses : codecov/codecov-action@v1
40+ if : matrix.deno == 'v2 .x'
41+ uses : codecov/codecov-action@v5
4242 with :
43- file : ./coverage.lcov
43+ files : ./coverage.lcov
You can’t perform that action at this time.
0 commit comments