Skip to content

Migrondi - v1.0.0

Migrondi - v1.0.0 #72

Workflow file for this run

name: .NET Core
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
include-prerelease: true
- run: dotnet build src/Migrondi --configuration Release
- run: dotnet test src/Migrondi.Tests