File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,11 @@ jobs:
31
31
run : dotnet build --no-restore Chirp/
32
32
33
33
- name : Test
34
- run : |
35
- export GitHub__ClientId="${{ secrets.GITHUBCLIENTID }}"
36
- export GitHub__ClientSecret="${{ secrets.GITHUBCLIENTSECRET }}"
37
- dotnet test --verbosity normal Chirp/
34
+ working-directory : Chirp/
35
+ env :
36
+ authentication_github_clientId : ${{ secrets.GITHUBCLIENTID }}
37
+ authentication_github_clientSecret : ${{ secrets.GITHUBCLIENTSECRET }}
38
+ run : dotnet test --verbosity normal
38
39
39
40
# Get the latest tag from the repository
40
41
- name : Get latest tag
Original file line number Diff line number Diff line change @@ -39,10 +39,11 @@ jobs:
39
39
run : dotnet build --no-restore Chirp/
40
40
41
41
- name : Test
42
- run : |
43
- export GitHub__ClientId="${{ secrets.GITHUBCLIENTID }}"
44
- export GitHub__ClientSecret="${{ secrets.GITHUBCLIENTSECRET }}"
45
- dotnet test --verbosity normal Chirp/
42
+ working-directory : Chirp/
43
+ env :
44
+ authentication_github_clientId : ${{ secrets.GITHUBCLIENTID }}
45
+ authentication_github_clientSecret : ${{ secrets.GITHUBCLIENTSECRET }}
46
+ run : dotnet test --verbosity normal
46
47
47
48
# Get the latest tag from the repository
48
49
- name : Get latest tag
You can’t perform that action at this time.
0 commit comments