Skip to content

Commit 5f799cb

Browse files
committed
Fix workflow
1 parent 3a995f2 commit 5f799cb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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")'

0 commit comments

Comments
 (0)