diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 055e24b..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,38 +0,0 @@ ---- -version: 2.1 - -jobs: - compile: - docker: - - image: cimg/go:1.18 - steps: - - checkout - - run: make - - test: - parameters: - go_version: - type: string - run_test: - type: boolean - default: true - docker: - - image: cimg/go:<< parameters.go_version >> - steps: - - checkout - - run: make test - -workflows: - version: 2 - unit-test: - jobs: - - compile - - test: - name: testing - matrix: - parameters: - go_version: - - "1.16" - - "1.17" - - "1.18" - - "1.19" diff --git a/README.md b/README.md index eaf7715..48118f2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -[![](https://circleci.com/gh/TLINDEN/tablizer.svg?style=svg)](https://app.circleci.com/pipelines/github/TLINDEN/tablizer) +[![Actions](https://github.com/tlinden/tablizer/workflows/build/badge.svg)](https://github.com/tlinden/tablizer/actions) +[![License](https://img.shields.io/badge/license-GPL-blue.svg)](https://github.com/tlinden/tablizer/blob/master/LICENSE) ## tablizer - Manipulate tabular output of other programs diff --git a/lib/common.go b/lib/common.go index 01f5521..dcda314 100644 --- a/lib/common.go +++ b/lib/common.go @@ -36,7 +36,7 @@ var ( validOutputmodes = "(orgtbl|markdown|extended|ascii)" // main program version - Version = "v1.0.3" + Version = "v1.0.4" // generated version string, used by -v contains lib.Version on // main branch, and lib.Version-$branch-$lastcommit-$date on