File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -20,23 +20,23 @@ jobs:
2020 runs-on : ${{ matrix.os }}
2121
2222 steps :
23- - uses : actions/checkout@v2
23+ - name : Checkout
24+ uses : actions/checkout@v2
2425 - name : Install Rust
2526 uses : actions-rs/toolchain@v1
2627 with :
2728 profile : minimal
2829 toolchain : stable
2930 components : rustfmt, clippy
30- - uses : Swatinem/rust-cache@v1
31+ - name : Cache
32+ uses : Swatinem/rust-cache@v1
3133
3234 - name : Diagnostics on Windows
3335 if : matrix.os == 'windows-latest'
3436 run : " gci env:"
3537
3638 - name : Rustfmt
37- uses : actions/checkout@v2
3839 run : cargo fmt -- --check
39-
4040 - name : Clippy
4141 uses : actions-rs/clippy-check@v1
4242 with :
@@ -60,11 +60,12 @@ jobs:
6060 uses : actions/setup-dotnet@v1
6161 with :
6262 dotnet-version : " 5.0.x"
63- - name : Install tmc-r-tester
63+ - name : Install R
6464 if : matrix.os == 'ubuntu-latest'
6565 uses : r-lib/actions/setup-r@v1
6666 with :
6767 r-version : " 3.5.3"
68+ - name : Install tmc-r-tester
6869 run : |
6970 Rscript -e 'install.packages(c("testthat", "jsonlite", "R.utils"))'
7071 Rscript -e 'install.packages("plugins/r/tests/tmcRtestrunner", repos=NULL, type="source")'
You can’t perform that action at this time.
0 commit comments