Skip to content

Gio v0.2 + Gonum v0.14.0 #66

Gio v0.2 + Gonum v0.14.0

Gio v0.2 + Gonum v0.14.0 #66

Workflow file for this run

name: Codecov
on:
pull_request:
branches: [ master ]
types:
- closed
jobs:
build:
name: Build
if: github.event.pull_request.merged == true
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
env:
GO111MODULE: on
GOPATH: ${{ github.workspace }}
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/gonum.org/v1/plot
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
with:
path: ${{ env.GOPATH }}/src/gonum.org/v1/plot
- name: Cache-Go
uses: actions/cache@v2
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
'%LocalAppData%\go-build'
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Coverage
if: matrix.platform == 'ubuntu-latest'
run: |
./.ci/test-coverage.sh
- name: Upload-Coverage
if: matrix.platform == 'ubuntu-latest'
uses: codecov/codecov-action@v1
with:
override_pr: ${{ github.event.pull_request.number }}
override_commit: ${{ github.event.pull_request.merge_commit_sha }}
override_branch: "refs/heads/master"