From 9bbde4f948557176c909438e5fa9b8d96004f767 Mon Sep 17 00:00:00 2001 From: inwon <37284520+inwonkim@users.noreply.github.com> Date: Fri, 29 Jan 2021 11:54:29 +0900 Subject: [PATCH] Add github action configuration for CI (#25) --- .github/workflows/pull_request.yml | 23 +++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 000000000..88a5196a2 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,23 @@ +name: Go + +on: + pull_request: + branches: [ icondev ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.14 + + - name: Build + run: make + + - name: Test + run: make test diff --git a/.gitignore b/.gitignore index 9998c0399..d7e97f578 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .?* +!.github !doc/.vuepress __pycache__ **/.DS_Store