Skip to content

Add zipper computation expressions to allow zipping any number of collections together #40

Add zipper computation expressions to allow zipping any number of collections together

Add zipper computation expressions to allow zipping any number of collections together #40

Workflow file for this run

name: Run Tests (.NET 6.0)
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.x'
- name: Restore
run: dotnet restore SafetyFirst.sln
- name: Build with dotnet
run: dotnet build SafetyFirst.sln -c Release --no-restore
- name: Test with dotnet
run: dotnet test SafetyFirst.sln -f net6.0 -c Release --no-build