thockin / go-build-template

A Makefile/Dockerfile example for Go projects.
Apache License 2.0
3.24k stars 430 forks source link

Duplicated runs in tests workflow #76

Closed jingyuanliang closed 1 year ago

jingyuanliang commented 1 year ago

https://github.com/thockin/go-build-template/blob/master/.github/workflows/tests.yaml uses matrix go-version: [ "1.17", "1.18", "1.19" ] but this is not passed into the make command, so all runs of the tests workflow are actually the same.

thockin commented 1 year ago

Good catch!

thockin commented 1 year ago

Fixed at HEAD