Skip to content

Commit

Permalink
Move from Travis to GitHub Actions (#1459)
Browse files Browse the repository at this point in the history
* Clean up move from Travis to GitHub Workflow
  • Loading branch information
jhy authored Dec 10, 2020
1 parent 653d5e7 commit 6dba165
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 43 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: Build
on: [push]

jobs:
Expand Down
39 changes: 0 additions & 39 deletions .travis.yml

This file was deleted.

6 changes: 4 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
jsoup changelog

*** Release 1.14.1 [PENDING]
* Improvement: added support for loading and parsing gzipped HTML files in Jsoup.parse(File in, charset, baseUri).

* Build Improvement: moved to GitHub Workflows for build verification.

* Change: updated the minimum supported Java version from Java 7 to Java 8.

* Change: updated the minimum Android API level from 8 to 10.

* Improvement: added support for loading and parsing gzipped HTML files in Jsoup.parse(File in, charset, baseUri).

*** Release 1.13.1 [2020-Feb-29]
* Improvement: added Element#closest(selector), which walks up the tree to find the nearest element matching the
selector.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jsoup is designed to deal with all varieties of HTML found in the wild; from pri

See [**jsoup.org**](https://jsoup.org/) for downloads and the full [API documentation](https://jsoup.org/apidocs/).

[![Build Status](https://travis-ci.org/jhy/jsoup.svg?branch=master)](https://travis-ci.org/jhy/jsoup)
[![Build Status](https://github.com/jhy/jsoup/workflows/Build/badge.svg)](https://github.com/jhy/jsoup/actions?query=workflow%3ABuild)

## Example
Fetch the [Wikipedia](https://en.wikipedia.org/wiki/Main_Page) homepage, parse it to a [DOM](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Introduction), and select the headlines from the *In the News* section into a list of [Elements](https://jsoup.org/apidocs/index.html?org/jsoup/select/Elements.html):
Expand All @@ -31,7 +31,7 @@ for (Element headline : newsHeadlines) {
[Online sample](https://try.jsoup.org/~LGB7rk_atM2roavV0d-czMt3J_g), [full source](https://github.com/jhy/jsoup/blob/master/src/main/java/org/jsoup/examples/Wikipedia.java).

## Open source
jsoup is an open source project distributed under the liberal [MIT license](https://jsoup.org/license). The source code is available at [GitHub](https://github.com/jhy/jsoup/tree/master/src/main/java/org/jsoup).
jsoup is an open source project distributed under the liberal [MIT license](https://jsoup.org/license). The source code is available at [GitHub](https://github.com/jhy/jsoup).

## Getting started
1. [Download](https://jsoup.org/download) the latest jsoup jar (or add it to your Maven/Gradle build)
Expand Down

0 comments on commit 6dba165

Please sign in to comment.