-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Got types casting in Path.cfg working #15
- Loading branch information
Showing
5 changed files
with
174 additions
and
123 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 |
---|---|---|
|
@@ -29,27 +29,25 @@ jobs: | |
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Clone 7 repos | ||
- name: Clone 6 repos | ||
run: | | ||
git clone ssh://[email protected]/ManderaGeneral/generalimport.git | ||
git clone ssh://[email protected]/ManderaGeneral/generallibrary.git | ||
git clone ssh://[email protected]/ManderaGeneral/generalfile.git | ||
git clone ssh://[email protected]/ManderaGeneral/generalvector.git | ||
git clone ssh://[email protected]/ManderaGeneral/generalpackager.git | ||
git clone ssh://[email protected]/Mandera/Mandera.git | ||
git clone ssh://[email protected]/ManderaGeneral/.github.git | ||
- name: Install 5 repos | ||
- name: Install 4 repos | ||
run: | | ||
pip install -e generalimport[full] | ||
pip install -e generallibrary[full] | ||
pip install -e generalfile[full] | ||
pip install -e generalvector[full] | ||
pip install -e generalpackager[full] | ||
- name: Run Packager method 'workflow_unittest' | ||
run: | | ||
python -c "from generalpackager import Packager; Packager().workflow_unittest()" | ||
env: | ||
PACKAGER_GITHUB_API: ${{ secrets.PACKAGER_GITHUB_API }} | ||
GH_TOKEN: ${{ secrets.PACKAGER_GITHUB_API }} | ||
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | ||
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | ||
sync: | ||
|
@@ -71,26 +69,24 @@ jobs: | |
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Clone 7 repos | ||
- name: Clone 6 repos | ||
run: | | ||
git clone ssh://[email protected]/ManderaGeneral/generalimport.git | ||
git clone ssh://[email protected]/ManderaGeneral/generallibrary.git | ||
git clone ssh://[email protected]/ManderaGeneral/generalfile.git | ||
git clone ssh://[email protected]/ManderaGeneral/generalvector.git | ||
git clone ssh://[email protected]/ManderaGeneral/generalpackager.git | ||
git clone ssh://[email protected]/Mandera/Mandera.git | ||
git clone ssh://[email protected]/ManderaGeneral/.github.git | ||
- name: Install 5 repos | ||
- name: Install 4 repos | ||
run: | | ||
pip install -e generalimport[full] | ||
pip install -e generallibrary[full] | ||
pip install -e generalfile[full] | ||
pip install -e generalvector[full] | ||
pip install -e generalpackager[full] | ||
- name: Run Packager method 'workflow_sync' | ||
run: | | ||
python -c "from generalpackager import Packager; Packager().workflow_sync()" | ||
env: | ||
PACKAGER_GITHUB_API: ${{ secrets.PACKAGER_GITHUB_API }} | ||
GH_TOKEN: ${{ secrets.PACKAGER_GITHUB_API }} | ||
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | ||
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} |
Oops, something went wrong.