peterstace / simplefeatures

Simple Features is a pure Go Implementation of the OpenGIS Simple Feature Access Specification
MIT License
127 stars 19 forks source link

Use Makefile instead of bash script for CI #512

Closed peterstace closed 1 year ago

peterstace commented 1 year ago

Description

Switches to use a Makefile as a "task runner" rather than a script for running CI related tasks. This is useful because developers of simplefeatures often have to run various tasks as part of development (e.g. run some of the test suits or lint code). It is a lot easier to invoke the Makefile (e.g. make lint) rather than opening the CI script and coping/modifying out the part that needs to be run.

Check List

Have you:

Related Issue

peterstace commented 1 year ago

Thanks for reviewing! 😀