Add german translations #269
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-linux: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' # all | |
- name: Setup .NET 8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Setup gitversion | |
run: dotnet tool install --global GitVersion.Tool | |
- name: Calculate version | |
id: calc_version | |
run: | | |
GITVERSION=$(dotnet-gitversion /output json /showvariable FullSemVer) | |
echo "::set-output name=PROJECT_VERSION::$GITVERSION" | |
- name: Restore packages | |
run: dotnet restore DynamicExpresso.sln | |
- name: Build | |
run: dotnet build DynamicExpresso.sln --no-restore -c Release /p:Version=${{steps.calc_version.outputs.PROJECT_VERSION}} | |
- name: Test .net core 8.0 | |
run: dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net8.0 | |
test-win: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET 7.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Setup .NET 8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Restore packages | |
run: dotnet restore DynamicExpresso.sln | |
- name: Build | |
run: dotnet build DynamicExpresso.sln --no-restore -c Release | |
- name: Test .net 4.6.1 | |
run: dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net461 | |
- name: Test .net 4.5 | |
run: dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net45 | |
- name: Test .net core 8.0 | |
run: dotnet test DynamicExpresso.sln --no-build --no-restore -c Release --verbosity normal -f net8.0 |