Merge pull request #1 from Crocmagnon/testaction

Trigger pushes only on master and when the release is created
This commit is contained in:
Gabriel Augendre 2019-12-28 01:49:32 +01:00 committed by GitHub
commit 52eaea946e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -2,9 +2,11 @@ name: Test & publish
on:
push:
branches:
- master
pull_request:
release:
types: [published]
types: [created]
jobs:
build:

View file

@ -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".

View file

@ -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>"]