Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch/poetry deps #88

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Use Dephell to generate setup.py
  • Loading branch information
RobertRosca committed Jul 21, 2020
commit acb600d659d373cc9faf44bb862c081acdc49700
9 changes: 7 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
ssh-private-key: ${{ secrets.STAGING_KEY }}

- uses: mshick/add-pr-comment@v1
if: ${{ failure() && steps.addKey.conclusion == 'failuhttps://oscovida.github.io/staging/80/re' }}
if: ${{ failure() && steps.addKey.conclusion == 'failure' }}
with:
message: "Staging key could not be imported, cannot push to oscovida/staging to create test website instance. If this PR is external it may not have access to the required secrets."
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -47,9 +47,14 @@ jobs:

- name: Set up oscovida and webgen
run: |
ls
pwd
cd oscovida
ls
pwd
pip install poetry
poetry --version
poetry config settings.virtualenvs.in-project true
poetry config virtualenvs.create false
poetry install -vv

- name: Generate new reports
Loading