Merge pull request #1 from Crocmagnon/testaction
Trigger pushes only on master and when the release is created
This commit is contained in:
commit
52eaea946e
3 changed files with 6 additions and 4 deletions
4
.github/workflows/pythonpackage.yml
vendored
4
.github/workflows/pythonpackage.yml
vendored
|
@ -2,9 +2,11 @@ name: Test & publish
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -69,7 +69,7 @@ cleantoots clean --delete # Delete without prompt.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Tested environments
|
## Tested environments
|
||||||
Cleantoots test suite runs on latest versions of macOS, Windows and Ubuntu
|
Cleantoots test suite runs on Python 3.6, 3.7 and 3.8
|
||||||
as GitHub Actions understands it. See
|
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]
|
(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".
|
for more information on what "latest" means".
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "cleantoots"
|
name = "cleantoots"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
description = "Cleanup your toot history."
|
description = "Cleanup your toot history."
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
||||||
|
|
Loading…
Reference in a new issue