Skip to content

chore(deps): Update dependency dotnet-sdk to v10 #635

chore(deps): Update dependency dotnet-sdk to v10

chore(deps): Update dependency dotnet-sdk to v10 #635

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '7.0.402' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Display dotnet version
run: dotnet --version
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test with the dotnet CLI
run: dotnet test