aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2020-03-15 21:18:32 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2020-03-15 21:18:32 +0100
commit9d0f15c4fa712cdacfa3887e9baac918f093fbf6 (patch)
treeeb1a4db1169ba4bb9ae58727a462d54f93f5f85c /.github/workflows
parent8fe5ed769fa01a42eafb3b7f064ffe8e0d436408 (diff)
downloadgo-git-9d0f15c4fa712cdacfa3887e9baac918f093fbf6.tar.gz
ci: based on github actionsv5.0.0
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml75
1 files changed, 71 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index bf1651e..16640a6 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,18 +1,85 @@
on: [push, pull_request]
name: Test
jobs:
- test:
+ version-matrix:
strategy:
+ fail-fast: false
matrix:
- go-version: [1.12.x, 1.13.x, 1.14.x]
+ go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
+
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
- go-version: ${{ matrix.go-version }}
+ go-version: ${{ matrix.go-version }}
+
- name: Checkout code
uses: actions/checkout@v2
+
+ - name: Configure known hosts
+ if: matrix.platform != 'ubuntu-latest'
+ run: |
+ mkdir -p ~/.ssh
+ ssh-keyscan -H github.com > ~/.ssh/known_hosts
+
+ - name: Set Git config
+ run: |
+ git config --global user.email "gha@example.com"
+ git config --global user.name "GitHub Actions"
+
- name: Test
- run: go test -v ./... \ No newline at end of file
+ run: make test-coverage
+
+ - name: Convert coverage to lcov
+ if: matrix.platform == 'ubuntu-latest' && matrix.go-version == '1.14.x'
+ uses: jandelgado/gcov2lcov-action@v1.0.0
+ with:
+ infile: coverage.out
+ outfile: coverage.lcov
+
+ - name: Coveralls
+ if: matrix.platform == 'ubuntu-latest' && matrix.go-version == '1.14.x'
+ uses: coverallsapp/github-action@master
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}
+ path-to-lcov: coverage.lcov
+
+ git-matrix:
+ strategy:
+ fail-fast: false
+ matrix:
+ git: [[master, ubuntu-latest], [v2.11.0, ubuntu-latest]]
+
+ runs-on: ${{ matrix.git[1] }}
+ env:
+ GIT_VERSION: ${{ matrix.git[0] }}
+ GIT_DIST_PATH: .git-dist/${{ matrix.git[0] }}
+
+ steps:
+ - name: Install Go
+ uses: actions/setup-go@v1
+ with:
+ go-version: 1.14.x
+
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Install build dependencies
+ run: sudo apt-get install gettext
+
+ - name: Git Build
+ run: make build-git
+
+ - name: Set Git config
+ run: |
+ git config --global user.email "gha@example.com"
+ git config --global user.name "GitHub Actions"
+ export PATH=$GIT_DIST_PATH:$PATH
+
+
+ - name: Test
+ env:
+ GIT_EXEC_PATH: ${{ env.GIT_DIST_PATH }}
+ run: make test-coverage