summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorTakayuki Matsuoka <t-mat@users.noreply.github.com>2021-05-31 04:28:49 (GMT)
committerTakayuki Matsuoka <t-mat@users.noreply.github.com>2021-05-31 04:28:49 (GMT)
commit44b8b10f84e169a47ebd346c31c565bae49e32b3 (patch)
treef51d22c7d7b0461a9fe95f760bee668944d22d25 /.github/workflows/ci.yml
parent025c3ce8f994213371a4260ae932ea244d44c6fc (diff)
downloadlz4-44b8b10f84e169a47ebd346c31c565bae49e32b3.zip
lz4-44b8b10f84e169a47ebd346c31c565bae49e32b3.tar.gz
lz4-44b8b10f84e169a47ebd346c31c565bae49e32b3.tar.bz2
Add make -C tests checkTag to ci.yml
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c001bd0..70ce2d5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -587,6 +587,22 @@ jobs:
############################################################
+# Check git tag for LZ4 releases
+#
+ lz4-check-tag:
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v2
+ - name: make -C tests checkTag
+ if: startsWith(github.ref, 'refs/tags/v') # If git tag name starts with 'v'
+ run: |
+ echo "tag=${GITHUB_REF#refs/*/}"
+ make -C tests checkTag
+ tests/checkTag ${GITHUB_REF#refs/*/}
+
+
+
+############################################################
# Gather CI environment information.
#
lz4-env-info: