Skip to content

Initial remote

Initial remote #1

Workflow file for this run

name: Build and Test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
NuGetDirectory: ${{ github.workspace }}/nuget
defaults:
run:
shell: sh
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore FactoryGenerator.sln
- name: Build
run: dotnet build FactoryGenerator.sln --no-restore
- name: Test
run: dotnet test FactoryGenerator.sln --no-build --no-restore