1
0

Add GitHub actions

This commit is contained in:
2019-12-29 19:21:40 +00:00
부모 38a3ba301b
커밋 6b35acf673
2개의 변경된 파일26개의 추가작업 그리고 0개의 파일을 삭제

13
.github/workflows/macos.yml vendored Normal 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
파일 보기

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