From b945175cbc73fddfa46b6c8dc62b735722943f80 Mon Sep 17 00:00:00 2001 From: TheoB <71510665+Theeoi@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:45:23 +0100 Subject: [PATCH] fix(workflows): Cleaned up Github workflows Fixes Excessive usage of Coveralls #3 --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b0c33ff..5f146cd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} key: ${{ secrets.SSHKEY }} - source: ".,!tests,!.git,!.vscode" + source: ".,!tests,!scripts,!docs" target: "/home/theodorb/notion-recurring-tasks/" - name: Install dependancies @@ -28,5 +28,5 @@ jobs: script: | cd /home/theodorb/notion-recurring-tasks . .venv/bin/activate - python -m pip install --upgrade pip setuptools wheel + python -m pip install --upgrade pip pip install . \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e94a6d9..b460799 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Tests on: push: - branches-ignore: [main] + branches: [main, dev] pull_request: branches: [main, dev]