Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User/kyrader/ci #157

Merged
merged 10 commits into from
Aug 7, 2020
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:
kyle-rader marked this conversation as resolved.
Show resolved Hide resolved
branches:
- master
kyle-rader marked this conversation as resolved.
Show resolved Hide resolved
kyle-rader marked this conversation as resolved.
Show resolved Hide resolved
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