Skip to content

task - nuget 1.3.0

task - nuget 1.3.0 #32

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['10.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore src/Falco.Datastar
- name: Build
run: dotnet build src/Falco.Datastar -c Release
- name: Test
run: dotnet test test/Falco.Datastar.Tests -c Release