From 4f3ddcd79341599c646f2149f45582f16b247087 Mon Sep 17 00:00:00 2001 From: Kyle Rader Date: Thu, 6 Aug 2020 12:11:22 -0700 Subject: [PATCH] Start ci actions yaml --- .github/workflows/continuous-integration.yml | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/continuous-integration.yml diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml new file mode 100644 index 000000000..75bdf50f6 --- /dev/null +++ b/.github/workflows/continuous-integration.yml @@ -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 + \ No newline at end of file