Skip to content

Migrate to net8

Migrate to net8 #32

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
run_unit_tests:
runs-on: ubuntu-latest
timeout-minutes: 5
name: Run unit tests
env:
DOCKER_BUILDKIT: 1
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore ./YaCloudKit.sln
- name: Build
run: dotnet build ./YaCloudKit.sln --configuration Release --no-restore
- name: Test
run: dotnet test ./YaCloudKit.sln --configuration Release --no-restore