Skip to content

Revert "prerelease" #128

Revert "prerelease"

Revert "prerelease" #128

Workflow file for this run

name: build-and-test
on:
pull_request:
branches: [main, release/**, develop]
types: [opened, reopened, synchronize, edited]
paths:
- "**.cs"
- "**.csproj"
- "**.yml"
- "**.yaml"
- "**.json"
env:
DOTNET_VERSION: "8.x" # The .NET SDK version to use
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore ./Ashampoo-Translation-Systems.sln
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-restore --verbosity normal