-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from GENESIS-EFRC/matt-tests
Fix github workflows
- Loading branch information
Showing
2 changed files
with
11 additions
and
7 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,7 +9,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v2.4.0 | ||
|
||
- uses: actions/setup-python@v1 | ||
with: | ||
|
@@ -37,19 +37,21 @@ jobs: | |
shell: bash -l {0} | ||
needs: | ||
- deploy | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/[email protected] | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
python-version: 3.9 | ||
activate-environment: foo | ||
- run: | | ||
python -m pip install --upgrade pip | ||
conda install -c conda-forge graph-tool | ||
pip install -e . | ||
pip install -r requirements.txt | ||
pip install -r requirements-optional.txt | ||
pip install -r requirements-docs.txt | ||
pip install -e . | ||
- name: Generate changelog | ||
uses: charmixer/auto-changelog-action@v1 | ||
|
@@ -61,6 +63,8 @@ jobs: | |
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GENESIS-EFRC" | ||
git stash | ||
git pull origin main | ||
mv CHANGELOG.md docs/ | ||
git add docs/CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' | ||
|
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