Skip to content

fix erros

fix erros #5

Workflow file for this run

name: CI Workflow
on:
push:
branches:
- main
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ["8.0.x", "6.0.x"]
steps:
- uses: actions/checkout@v4
name: Check out the code to runner
with:
fetch-depth: 0
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
cache: true
cache-dependency-path: "**/package.lock.json"
- name: Display dotnet version
run: dotnet --version