Skip to content

Bump github.com/briandowns/openweathermap from 0.16.0 to 0.21.0 #14

Bump github.com/briandowns/openweathermap from 0.16.0 to 0.21.0

Bump github.com/briandowns/openweathermap from 0.16.0 to 0.21.0 #14

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
go-version: ["1.15.7", "1.14.14"]
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache Go modules
# not supported on windows with gh actions at the moment
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Setup Go for Building
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
- name: Build goweathertui
run: make build
- name: Test goweathertui
run: make test
- name: Show Coverage of goweathertui
run: make coverage