File tree 2 files changed +23
-25
lines changed
2 files changed +23
-25
lines changed Original file line number Diff line number Diff line change 17
17
runs-on : ${{ matrix.os }}
18
18
strategy :
19
19
matrix :
20
- os : [ubuntu-latest, windows-latest]
21
- # os: [ubuntu-latest, windows-latest, macOS-latest]
20
+ os : [ubuntu-latest, windows-latest, macOS-latest]
22
21
23
22
#
24
23
# Sequencia de execução das tarefas do job.
Original file line number Diff line number Diff line change 14
14
# Linux, Windows e MacOs
15
15
#
16
16
tests :
17
-
18
17
runs-on : ${{ matrix.os }}
19
18
strategy :
20
19
matrix :
@@ -24,25 +23,25 @@ jobs:
24
23
# Sequencia de execução das tarefas do job.
25
24
#
26
25
steps :
27
- #
28
- # Checkout o repositório para poder ter acesso a ele.
29
- #
30
- - uses : actions/checkout@v2
31
- #
32
- # Configura os pacotes nas versões necessárias
33
- #
34
- - name : Setup .NET Core
35
- uses : actions/setup-dotnet@v1
36
- with :
37
- dotnet-version : 3.1.401
38
- #
39
- # Instala todas as depedências do projeto.
40
- #
41
- - name : Install dependencies
42
- run : dotnet restore
43
- #
44
- # Executa todos os testes do projeto.
45
- #
46
- - name : Test
47
- # run: dotnet test --no-restore --verbosity normal
48
- run : dotnet test --configuration Release
26
+ #
27
+ # Checkout o repositório para poder ter acesso a ele.
28
+ #
29
+ - uses : actions/checkout@v2
30
+ #
31
+ # Configura os pacotes nas versões necessárias
32
+ #
33
+ - name : Setup .NET Core
34
+ uses : actions/setup-dotnet@v1
35
+ with :
36
+ dotnet-version : 8.0.x
37
+ #
38
+ # Instala todas as depedências do projeto.
39
+ #
40
+ - name : Install dependencies
41
+ run : dotnet restore
42
+ #
43
+ # Executa todos os testes do projeto.
44
+ #
45
+ - name : Test
46
+ # run: dotnet test --no-restore --verbosity normal
47
+ run : dotnet test --configuration Release
You can’t perform that action at this time.
0 commit comments