From 597f8cac7419d5cddf8929dcfa19d6bf716208c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Tue, 2 Nov 2021 04:34:04 +0100 Subject: [PATCH 1/2] Fix typo --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a3bfbdf..cfd93b61 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: Run tests & Public to Docker Registry +name: Run tests & Publish to Docker Registry on: [push, pull_request] @@ -97,4 +97,4 @@ jobs: with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} - args: Docker image pushed on ${{ github.ref }} \ No newline at end of file + args: Docker image pushed on ${{ github.ref }} From 103d550347ec5405ab1d7c9a2467bc470259858a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Tue, 2 Nov 2021 04:48:13 +0100 Subject: [PATCH 2/2] Fix another typo --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cfd93b61..2aa35bac 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: - uses: actions/cache@v1 with: path: ~/.cache/poetry - key: ${{ runner.os }}-poetry-${{ hashFiles('**/peotry.lock') }} + key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} restore-keys: | ${{ runner.os }}-poetry- @@ -63,7 +63,6 @@ jobs: poetry run black --check . flake8 - - name: Test with pytest run: | pytest --cov=. --cov-report=term:skip-covered --cov-report=html:htmlcov --cov-fail-under=60