From 5a4937155d86951b300486a92700951822c5b007 Mon Sep 17 00:00:00 2001 From: Rohit Goswami Date: Wed, 10 Jun 2020 02:23:27 +0000 Subject: workflow: use poetry --- .github/workflows/update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index aed0bdc..cb3eac3 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -13,11 +13,11 @@ jobs: - name: Upgrade pip run: python -m pip install --upgrade pip - name: Install pybase16 - run: pip install pybase16-builder + run: pip install poetry && poetry install - name: Fetch the repository code uses: actions/checkout@v2 - name: Run make - run: make + run: poetry run make - name: Commit the changes, if any uses: stefanzweifel/git-auto-commit-action@v4.1.1 with: -- cgit