diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 10:17:28 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 10:17:28 +0100 |
commit | 0835d1b7811c38f8e4f48ae3772d26fccd70c217 (patch) | |
tree | 4e054105ceb6735a6d99f737fa9a4e0ef44ac2dc /.github/workflows/ci.yml | |
parent | workflows/ci: unpin runner image (diff) | |
download | vk-scripts-0835d1b7811c38f8e4f48ae3772d26fccd70c217.tar.gz vk-scripts-0835d1b7811c38f8e4f48ae3772d26fccd70c217.zip |
add runtime version informationv1.0.3
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27164ea..a564a9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,12 +27,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '${{ matrix.python-version }}' - name: 'Install package & dependencies' run: pip install -q -e . + - name: Check that scripts are runnable + run: | + vk-mutuals --version + vk-status --version + vk-sessions --version - name: Run tests run: ./test/bin/main.sh @@ -43,6 +50,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 with: |