-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temp: Adding a temporary GitHub action so that I can trouble shoot a …
…bug with the DB refresh action
- Loading branch information
Showing
2 changed files
with
36 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: bugfix-temp | ||
|
||
on: | ||
workflow_dispatch: | ||
jobs: | ||
refresh-db: | ||
# runs-on: ubuntu-18.04 | ||
# runs-on: ubuntu-latest # not sure which is more current when resolving merge conflicts | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v2 | ||
- name: Set up Python version | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9.7' # Not sure why 3.9.7 here and 3.9 elsewhere. the .7 works on mac, but not on ubuntu | ||
|
||
- name: Create and start virtual environment | ||
run: | | ||
python3 -m venv venv | ||
source venv/bin/activate | ||
# - name: Install dependencies | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# pip install --upgrade wheel | ||
# pip install --upgrade setuptools | ||
# pip install -r requirements.txt | ||
|
||
- name: Install | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install --upgrade wheel | ||
pip install --upgrade setuptools | ||
pip install PyCG==0.0.7 |
Submodule termhub-vocab
updated
2 files
+2 −2 | relationship_graph.pickle | |
+2 −2 | relationship_graph_undirected.pickle |