Skip to content

Add CI build workflow, .gitattributes and README badges #1

Add CI build workflow, .gitattributes and README badges

Add CI build workflow, .gitattributes and README badges #1

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
# Projeto é WinForms (net9.0-windows) — precisa de runner Windows.
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore
run: dotnet restore SQLStructDiff.sln
- name: Build
run: dotnet build SQLStructDiff.sln --configuration Release --no-restore