Update __init__.py #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2022 CMakePP | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: Test PyPI Release | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test_release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Get the tags | |
run: git fetch --all --tags | |
- name: Install Python's "build" package | |
run: python -m pip install build twine --user | |
- name: Build binary wheel and source tarball | |
run: python -m build --sdist --wheel --outdir dist/ | |
- name: Test Long Description | |
run: twine check dist/* | |
- name: Test built package | |
run: | | |
pip install pytest | |
pip install --user dist/*.tar.gz | |
cd tests | |
python -B test_all.py |