From 6b35acf67305309e8e262cc68ced8d7dd6cafe91 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 29 Dec 2019 19:21:40 +0000 Subject: [PATCH] Add GitHub actions --- .github/workflows/macos.yml | 13 +++++++++++++ .github/workflows/ubuntu.yml | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .github/workflows/macos.yml create mode 100644 .github/workflows/ubuntu.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..40e3fb7 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,13 @@ +name: macOS + +on: [push] + +jobs: + build: + name: Build + runs-on: macOS-latest + steps: + - uses: actions/checkout@v1 + + - name: Build + run: go build diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..7e98750 --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,13 @@ +name: Ubuntu + +on: [push] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - name: Build + run: go build