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