Skip to content

Commit 82efdd8

Browse files
committed
fix dotnet version in ci-tests
1 parent 011a425 commit 82efdd8

File tree

2 files changed

+23
-25
lines changed

2 files changed

+23
-25
lines changed

.github/workflows/ci-build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
strategy:
1919
matrix:
20-
os: [ubuntu-latest, windows-latest]
21-
#os: [ubuntu-latest, windows-latest, macOS-latest]
20+
os: [ubuntu-latest, windows-latest, macOS-latest]
2221

2322
#
2423
# Sequencia de execução das tarefas do job.

.github/workflows/ci-tests.yml

+22-23
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
# Linux, Windows e MacOs
1515
#
1616
tests:
17-
1817
runs-on: ${{ matrix.os }}
1918
strategy:
2019
matrix:
@@ -24,25 +23,25 @@ jobs:
2423
# Sequencia de execução das tarefas do job.
2524
#
2625
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

0 commit comments

Comments
 (0)