Skip to content

Commit

Permalink
ci: switch to drone
Browse files Browse the repository at this point in the history
Switch the CI system from travis to drone

Closes #6
  • Loading branch information
CMiksche committed Apr 20, 2021
1 parent d50010e commit c3c7218
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
11 changes: 11 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
kind: pipeline
name: default
steps:
- name: test
image: python
commands:
- pip install pipenv
- pipenv install
- pipenv run gitlint
- pipenv run pylint setup.py updater.py
- pipenv run python -m unittest
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# No complied files
*.pyc
searchlib/*.pyc
searchlib/lib/*.pyc
searchlib/lib/*.pyc
.idea/
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WordPress Remote Updater

[![Build Status](https://travis-ci.org/CMiksche/wp-remote-updater.svg?branch=master)](https://travis-ci.org/CMiksche/wp-remote-updater)
[![Build Status](https://cloud.drone.io/api/badges/CMiksche/wp-remote-updater/status.svg?ref=refs/heads/feat/python3)](https://cloud.drone.io/CMiksche/wp-remote-updater)

Gets the version of a reference site and update the wordpress site, if the reference site has a higher version.

Expand Down

0 comments on commit c3c7218

Please sign in to comment.