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

chore: add basic github pipeline (#12) #14

Merged
merged 15 commits into from
Aug 26, 2020
365 changes: 0 additions & 365 deletions .circleci/config.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/actions/setup-poetry/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
runs:
using: "composite"
steps:
- name: Installing poetry
run: |
export $( \
PYTHONFAULTHANDLER=TRUE \
PYTHONUNBUFFERED=TRUE \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_NO_CACHE_DIR=off \
)
pip install --upgrade pip \
&& pip install "poetry==1.0.5"
shell: bash
Loading