Skip to content

v1.5.1-preview.1

v1.5.1-preview.1 #69

Workflow file for this run

name: .NET Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
project: [Ao.Cache.sln]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Install dotnet-ef
run: dotnet tool install --global dotnet-ef
- name: Restore dependencies
run: dotnet restore ${{ matrix.project }}
- name: Build
run: dotnet build ${{ matrix.project }} --no-restore