Skip to content

Commit 01fddbb

Browse files
committed
install dotnet in CI
1 parent f8543d5 commit 01fddbb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- uses: r-lib/actions/setup-r@v1
2222
with:
2323
r-version: "3.5.3"
24+
- uses: actions/setup-dotnet@v1
25+
with:
26+
dotnet-version: "3.1.x"
2427
- name: Install tmc-r-tester
2528
run: |
2629
Rscript -e 'install.packages(c("devtools","testthat", "httr", "curl"),repos="https://ftp.eenet.ee/pub/cran/")'
@@ -34,6 +37,9 @@ jobs:
3437
runs-on: windows-latest
3538
steps: # TODO: install missing dependencies and run all tests on windows
3639
- uses: actions/checkout@v2
40+
- uses: actions/setup-dotnet@v1
41+
with:
42+
dotnet-version: "3.1.x"
3743
- name: Build test binary
3844
run: cargo test --no-run --verbose
3945
- name: Run tests
@@ -43,6 +49,9 @@ jobs:
4349
runs-on: macos-latest
4450
steps: # TODO: install missing dependencies and run all tests on macos
4551
- uses: actions/checkout@v2
52+
- uses: actions/setup-dotnet@v1
53+
with:
54+
dotnet-version: "3.1.x"
4655
- name: Build test binary
4756
run: cargo test --no-run --verbose
4857
- name: Run tests

0 commit comments

Comments
 (0)