-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Smooshed `datetimeutils` and `typeutils` into a new package called `ccptools`
- Loading branch information
1 parent
04eb438
commit 7f25788
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,23 +9,26 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
- name: Set up Python 2 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
- name: Install dependencies | ||
- name: Install Dependencies 2 | ||
run: | | ||
python --version | ||
python -m pip install --upgrade pip | ||
pip install --upgrade setuptools wheel twine | ||
- name: Run unit tests | ||
- name: Run Unit Tests 2 | ||
run: | | ||
python -m unittest discover -v -f ./tests | ||
- name: Build and package | ||
- name: Build and Package 2 | ||
run: | | ||
echo WHATTHEHELL | ||
pip freeze | ||
python setup.py sdist bdist_wheel | ||
- name: Publish to PyPI | ||
- name: Publish to PyPI 2 | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
verbose: true |