aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-03-03 10:17:28 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-03-03 10:17:28 +0100
commit0835d1b7811c38f8e4f48ae3772d26fccd70c217 (patch)
tree4e054105ceb6735a6d99f737fa9a4e0ef44ac2dc /.github
parentworkflows/ci: unpin runner image (diff)
downloadvk-scripts-1.0.3.tar.gz
vk-scripts-1.0.3.zip
add runtime version informationv1.0.3
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml9
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: