diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 14:28:33 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 16:28:39 +0100 |
commit | ed86e96d158600fb4555d23066dec5db822b73ef (patch) | |
tree | 028d576552e10bf5248ab6b8bc1cba5fbcab4960 /.github | |
parent | workflows/ci: test w/ Python 3.11 also (diff) | |
download | cgitize-ed86e96d158600fb4555d23066dec5db822b73ef.tar.gz cgitize-ed86e96d158600fb4555d23066dec5db822b73ef.zip |
add runtime version information
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1db5b0..4dc1af7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 with: @@ -27,8 +29,10 @@ jobs: run: | git config --global user.name 'John Doe' git config --global user.email 'John.Doe@example.com' - - name: Install dependencies + - name: 'Install package & dependencies' run: pip install -q -e . + - name: Verify that cgitize can be run + run: cgitize --version - name: Integration test (local) run: ./test/integration/local/test.sh - name: Unit tests @@ -135,6 +139,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 - name: Verify package can be installed |