Skip to content

Rot4 check

Rot4 check #28

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build 1.3
run: dotnet build -c ReleaseV13
- name: Build 1.4
run: dotnet build -c ReleaseV14
- name: Build 1.5
run: dotnet build -c ReleaseV15
- name: Build 1.6
run: dotnet build -c ReleaseV16