From 7a2dc22177a01212df6885cbdfa69ca361732344 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 28 Dec 2019 01:36:33 +0100 Subject: [PATCH 1/6] Add python test versions in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c8e6e5d..46d5599 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ cleantoots clean --delete # Delete without prompt. ``` ## Tested environments -Cleantoots test suite runs on latest versions of macOS, Windows and Ubuntu -as GitHub Actions understands it. See +Cleantoots test suite runs on Python 3.6, 3.7 and 3.8 +on latest versions of macOS, Windows and Ubuntu as GitHub Actions understands it. See (the docs)[https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idruns-on] for more information on what "latest" means". From 298d5774aba041c2f29f2062e40090249d7c0ef1 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 28 Dec 2019 01:39:13 +0100 Subject: [PATCH 2/6] Test GH actions --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 46d5599..e524f58 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ favorite_limit = 30 days_count = 7 ``` + ## Run See `cleantoots config` for the current config. From 57df697e0bdbc688b0f3bba7ee89b5f3e84489be Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 28 Dec 2019 01:43:03 +0100 Subject: [PATCH 3/6] Revert "Test GH actions" This reverts commit 298d5774aba041c2f29f2062e40090249d7c0ef1. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e524f58..46d5599 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,6 @@ favorite_limit = 30 days_count = 7 ``` - ## Run See `cleantoots config` for the current config. From 576d590e8378e6c4ed1b5e3fc71a2f520685a7c9 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 28 Dec 2019 01:43:23 +0100 Subject: [PATCH 4/6] Deduplicate CI jobs --- .github/workflows/pythonpackage.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 42142de..0282c18 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -2,9 +2,13 @@ name: Test & publish on: push: + branches: + - master pull_request: + branches: + - master release: - types: [published] + types: [created] jobs: build: From 6d6571c639083850c552c87a099e9a185f9f28cb Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 28 Dec 2019 01:43:32 +0100 Subject: [PATCH 5/6] Bump version number --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9840faf..95081af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cleantoots" -version = "0.2.2" +version = "0.2.3" description = "Cleanup your toot history." license = "GPL-3.0-or-later" authors = ["Gabriel Augendre "] From 1ded4dc4728d81de855485f3a1d6b33baba20ac4 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 28 Dec 2019 01:44:27 +0100 Subject: [PATCH 6/6] Trigger CI for all PR --- .github/workflows/pythonpackage.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 0282c18..319ebfa 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -5,8 +5,6 @@ on: branches: - master pull_request: - branches: - - master release: types: [created]