diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 00:35:40 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 00:35:40 +0300 |
commit | 223f2ef3a11cd456f6988d27999eab881407beab (patch) | |
tree | cee9a00ab7bf7bd4561ba30b38e304f5f98e123e /.github | |
parent | setup.cfg: fix invalid console_scripts (diff) | |
download | vk-scripts-223f2ef3a11cd456f6988d27999eab881407beab.tar.gz vk-scripts-223f2ef3a11cd456f6988d27999eab881407beab.zip |
workflows/test: run `pip install .`
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 54762f1..5e964f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,6 +44,8 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3 + - name: Verify package can be installed + run: python3 -m pip install . - name: Install tools run: python3 -m pip install --upgrade build - name: Build package |