Skip to content

Commit 86555e7

Browse files
committed
Update workflow to install required libssl dependencies before running tests
1 parent ac1e73c commit 86555e7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Dotnet Tests
23

34
on: [push]
@@ -9,6 +10,11 @@ jobs:
910
steps:
1011
- uses: actions/checkout@v2
1112

13+
- name: Install Required Libraries
14+
run: |
15+
sudo apt-get update
16+
sudo apt-get install -y libssl1.1 || sudo apt-get install -y libssl3
17+
1218
- name: Setup Dotnet
1319
uses: actions/setup-dotnet@v1
1420
with:
@@ -20,6 +26,4 @@ jobs:
2026
- name: Run Tests
2127
run: dotnet test --results-directory TestResults
2228
env:
23-
DOTNET_CLI_TELEMETRY_OPTOUT: '1'
24-
25-
# Additional steps may follow...
29+
DOTNET_CLI_TELEMETRY_OPTOUT: '1'

0 commit comments

Comments
 (0)