github.com/117503445/github-action-example@v0.0.0-20230330151252-3d5ba77d6aad/README.md (about)

     1  # github-action-example
     2  
     3  This repo demonstrates the ability of github action to do docker image builds and github releases using a simple go http code.
     4  
     5  <https://github.com/117503445/github-action-example/blob/master/.github/workflows/docker.yaml> is a docker build template that can be easily copied to other projects.
     6  
     7  [![codecov](https://codecov.io/gh/117503445/github-action-example/branch/master/graph/badge.svg)](https://codecov.io/gh/117503445/github-action-example)
     8  
     9  ## dev
    10  
    11  ```sh
    12  go run .
    13  go test ./... -race -coverpkg=./... -coverprofile=coverage.txt -v
    14  ```