diff --git a/.github/workflows/drive_to_es.yml b/.github/workflows/drive_to_es.yml index 957b3e5..fa6bbee 100644 --- a/.github/workflows/drive_to_es.yml +++ b/.github/workflows/drive_to_es.yml @@ -3,6 +3,10 @@ name: CI/CD for drive_to_es +run-name: ${{ github.actor }} is running deployment workflow + +on: [push] + jobs: test: runs-on: ubuntu-latest @@ -18,10 +22,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Test run: | - apt install pipx && \ + cd household_expenses/publish/drive_to_es/ + sudo apt update && sudo apt install -y pipx && \ pipx install poetry && \ - poetry install && \ - cd household_expenses/publish/drive_to_es/ - make test - make lint - make static-type-check \ No newline at end of file + poetry install + poetry run make test lint static-type-check \ No newline at end of file