Skip to content

Commit

Permalink
Start ci actions yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Rader committed Aug 6, 2020
1 parent 753e93d commit fc814df
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continous Integration
on:
pull_request:
branches:
- master
workflow_dispatch:

jobs:
build_and_test_ubuntu:
runs-on: ubuntu-latest
name: "Build & Test: Ubuntu"
steps:
- run: |
echo "Hello World Github Actions"
echo "Running on: $(uname -a)"
build_and_test_windows:
runs-on: windows-latest
name: "Build & Test: Windows"
steps:
- script: |
echo "Hello World from Github Actions"
systeminfo /FO list

0 comments on commit fc814df

Please sign in to comment.