Skip to content

fix(chatbot): Apply python logic and docker environment variables #2

fix(chatbot): Apply python logic and docker environment variables

fix(chatbot): Apply python logic and docker environment variables #2

Workflow file for this run

name: .NET Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout código
uses: actions/checkout@v3
- name: Configurar .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0.x'
- name: Restaurar pacotes
run: dotnet restore AMS_HoldCrypto.sln
- name: Build do projeto
run: dotnet build AMS_HoldCrypto.sln --configuration Release --no-restore
- name: Testes (se houver)
run: dotnet test AMS_HoldCrypto.sln --no-build --verbosity normal