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:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
release:
|
||||
types: [published]
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -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".
|
||||
|
|
|
@ -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 <gabriel@augendre.info>"]
|
||||
|
|
Loading…
Reference in a new issue