Skip to content

Create StringWithTypes and use it as statement or expression #205

Create StringWithTypes and use it as statement or expression

Create StringWithTypes and use it as statement or expression #205

Workflow file for this run

name: Build
on:
workflow_call:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Up .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore
run: dotnet restore --packages packages
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal
- name: Pack
run: dotnet pack -c Release --no-build -o nupkgs
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}