Skip to content

Bump actions/checkout from 4.1.1 to 4.1.2 #110

Bump actions/checkout from 4.1.1 to 4.1.2

Bump actions/checkout from 4.1.1 to 4.1.2 #110

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
jobs:
build-test:
runs-on: ubuntu-latest
name: Build and run tests
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup .NET SDK 6.0
uses: actions/[email protected]
with:
dotnet-version: 6.0.419
source-url: ${{ secrets.NUGET_SOURCE }}
env:
NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }}
- name: Setup .NET SDK 8.0
uses: actions/[email protected]
with:
dotnet-version: 8.0.201
source-url: ${{ secrets.NUGET_SOURCE }}
env:
NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }}
- name: Build solution
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test --configuration Release