Skip to content

Commit

Permalink
Add github action configuration for CI (icon-project#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
inwonkim authored Jan 29, 2021
1 parent e7e4f01 commit 9bbde4f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.?*
!.github
!doc/.vuepress
__pycache__
**/.DS_Store
Expand Down

0 comments on commit 9bbde4f

Please sign in to comment.