Skip to content

Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.9.0 #13

Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.9.0

Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.9.0 #13

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches:
- "**" # matches every branch
- "!main" # excludes main
concurrency:
group: nuget-${{ github.ref }}
cancel-in-progress: true
env:
PROJECT_PATH: "src/Ckode.Encryption/Ckode.Encryption.csproj"
SOLUTION_PATH: "Ckode.Encryption.sln"
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output
NUGET_SOURCE_URL: "https://api.nuget.org/v3/index.json"
jobs:
test:
name: "test"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install dotnet"
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: "Restore packages"
run: dotnet restore ${{ env.SOLUTION_PATH }}
- name: Test
run: dotnet test ${{ env.SOLUTION_PATH }}