diff options
author | Michael Muré <batolettre@gmail.com> | 2020-12-08 15:03:56 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-12-08 15:03:56 +0100 |
commit | 52ef5e96f543ca242a9e1e8f2917492eb3d3fb95 (patch) | |
tree | eedd06871e39999f08b6be0e7e64e19cb54b096c /.github/workflows/go.yml | |
parent | c884d557bf5e0ebdbe6e3b20535af24c2e97d29f (diff) | |
download | git-bug-52ef5e96f543ca242a9e1e8f2917492eb3d3fb95.tar.gz |
add github actions
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r-- | .github/workflows/go.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 00000000..3ce22f3a --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,41 @@ +name: Go build and test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + workflow_dispatch: + +jobs: + build: + + strategy: + matrix: + go-version: [1.13.x, 1.14.x, 1.15.x] + platform: [ubuntu-latest, macos-latest, windows-latest] + + runs-on: ${{ matrix.platform }} + + steps: + + - name: Set up Go ${{ matrix.node-version }} + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + + - name: Check out code + uses: actions/checkout@v2 + + - name: Build + run: make + + - name: Test + run: make test + env: + GITHUB_TEST_USER: ${{ secrets._GITHUB_TEST_USER }} + GITHUB_TOKEN_ADMIN: ${{ secrets._GITHUB_TOKEN_ADMIN }} + GITHUB_TOKEN_PRIVATE: ${{ secrets._GITHUB_TOKEN_PRIVATE }} + GITHUB_TOKEN_PUBLIC: ${{ secrets._GITHUB_TOKEN_PUBLIC }} + GITLAB_API_TOKEN: ${{ secrets.GITLAB_API_TOKEN }} + GITLAB_PROJECT_ID: ${{ secrets.GITLAB_PROJECT_ID }} |