Skip to content

fix cache errors

fix cache errors #2

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 }}
- name: Display dotnet version
run: dotnet --version