Skip to content

Updated github actions. #22

Updated github actions.

Updated github actions. #22

Workflow file for this run

name: Paradigm ORM
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore ./src/Paradigm.ORM.sln
- name: Build
run: dotnet build ./src/Paradigm.ORM.sln --configuration Release --no-restore