1
0
Fork 0

Add GitHub actions

master
dump_stack() 2019-12-29 19:21:40 +00:00
parent 38a3ba301b
commit 6b35acf673
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
2 changed files with 26 additions and 0 deletions

13
.github/workflows/macos.yml vendored Normal file
View File

@ -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

13
.github/workflows/ubuntu.yml vendored Normal file
View File

@ -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