Skip to content

Commit

Permalink
adding a workflow for testing installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mxrcon authored Jul 7, 2022
1 parent 8766f4f commit a8ce91b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test_installation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Tests
on:
workflow_dispatch:
jobs:
test:
name: Test Installation
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Test Installation on ${{ matrix.os }}
shell: pwsh
run: |
Install-Module BioNameGenerator
Get-RandomKeyword
Get-RandomPhrase

0 comments on commit a8ce91b

Please sign in to comment.