Skip to content

Add files via upload #4

Add files via upload

Add files via upload #4

Workflow file for this run

name: Hello World
on: push
jobs:
hello-world:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Run PowerShell Hello World script
#if: github.event.action == 'inline'
run: Write-Output 'Hello World!'
- name: Run a multi-line PowerShell script
#if: github.event.action == 'inline'
run: |
$psversiontable;
Get-Process;