We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e99c0 commit ddd1c16Copy full SHA for ddd1c16
1 file changed
.github/workflows/main.yml
@@ -16,11 +16,14 @@ jobs:
16
- '9.0'
17
name: .NET ${{ matrix.dotnet-version }} sample
18
steps:
19
- - uses: actions/checkout@v3
20
- - uses: actions/setup-dotnet@v2
+ - uses: actions/checkout@v4
+ - name: Setup .NET
21
+ uses: actions/setup-dotnet@v4
22
with:
23
dotnet-version: ${{ matrix.dotnet-version }}
- - run: dotnet restore
24
- - env:
+ - name: Restore dependencies
25
+ run: dotnet restore
26
+ - name: Run tests
27
+ env:
28
DETECTLANGUAGE_API_KEY: ${{ secrets.DETECTLANGUAGE_API_KEY }}
29
run: dotnet test
0 commit comments