Skip to content

Attr.valueString, Attr.valueStringf, Attr.valueEmpty and Attr.valueOp… #21

Attr.valueString, Attr.valueStringf, Attr.valueEmpty and Attr.valueOp…

Attr.valueString, Attr.valueStringf, Attr.valueEmpty and Attr.valueOp… #21

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore --force --force-evaluate
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build