Skip to content

Commit

Permalink
Add Travis config for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
theaquamarine committed Jan 13, 2018
1 parent a434d5c commit edd2eda
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: generic

matrix:
include:
- os: linux
dist: trusty
sudo: false
addons:
apt:
sources:
- sourceline: deb [arch=amd64] https://packages.microsoft.com/ubuntu/14.04/prod trusty main
key_url: https://packages.microsoft.com/keys/microsoft.asc
packages:
- powershell
before_install:
- pwsh -c 'Set-PSRepository -Name PSGallery -InstallationPolicy Trusted'
- pwsh -c 'Install-Module Pester -Scope CurrentUser'

script:
- pwsh -c 'Import-Module Pester; Invoke-Pester -EnableExit'

0 comments on commit edd2eda

Please sign in to comment.