diff --git a/PSLambda.build.ps1 b/PSLambda.build.ps1 index 9b4395d..87a5433 100644 --- a/PSLambda.build.ps1 +++ b/PSLambda.build.ps1 @@ -35,6 +35,7 @@ $script:Folders = @{ $script:Discovery = @{ HasDocs = Test-Path ('{0}\{1}\*.md' -f $Folders.Docs, $PSCulture) HasTests = Test-Path ('{0}\*.Tests.ps1' -f $Folders.Test) + IsUnix = $PSVersionTable.PSEdition -eq "Core" -and -not $IsWindows } $tools = "$PSScriptRoot\tools" diff --git a/README.md b/README.md index cff4c9c..ec0d247 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,12 @@ state and is not currently recommended for use in production environments. This project adheres to the Contributor Covenant [code of conduct](https://github.com/SeeminglyScience/PSLambda/tree/master/docs/CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to seeminglyscience@gmail.com. +## Build status + +|AppVeyor (Windows)|CircleCI (Linux)|CodeCov| +|---|---|---| +|[![Build status](https://ci.appveyor.com/api/projects/status/8n8alv7moy661rr6?svg=true)](https://ci.appveyor.com/project/SeeminglyScience/pslambda) |[![CircleCI](https://circleci.com/gh/SeeminglyScience/PSLambda.svg?style=svg)](https://circleci.com/gh/SeeminglyScience/PSLambda)|[![codecov](https://codecov.io/gh/SeeminglyScience/PSLambda/branch/master/graph/badge.svg)](https://codecov.io/gh/SeeminglyScience/PSLambda)| + ## Features - C# like syntax (due to being compiled from interpreted Linq expression trees) with some PowerShell