diff --git a/.github/workflows/build-github-actions.yml b/.github/workflows/build-github-actions.yml
new file mode 100644
index 0000000..def335d
--- /dev/null
+++ b/.github/workflows/build-github-actions.yml
@@ -0,0 +1,17 @@
+name: Java CI
+
+on: [push]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 8
+ uses: actions/setup-java@v3
+ with:
+ java-version: '8'
+ distribution: 'adopt'
+ - name: Build with Maven
+ run: mvn --batch-mode --update-snapshots package
diff --git a/README.md b/README.md
index 3c2f091..7edbd14 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,12 @@
iban4j
======
-[![Build Status](https://api.travis-ci.org/repositories/arturmkrtchyan/iban4j.png)](https://travis-ci.org/arturmkrtchyan/iban4j) [![Coverage Status](https://img.shields.io/coveralls/arturmkrtchyan/iban4j.svg)](https://coveralls.io/r/arturmkrtchyan/iban4j) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.iban4j/iban4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.iban4j/iban4j)
+[![Build Status](https://github.com/arturmkrtchyan/iban4j/actions/workflows/build-github-actions.yml/badge.svg)](https://travis-ci.org/arturmkrtchyan/iban4j) [![Coverage Status](https://img.shields.io/coveralls/arturmkrtchyan/iban4j.svg)](https://coveralls.io/r/arturmkrtchyan/iban4j) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.iban4j/iban4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.iban4j/iban4j)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://raw.githubusercontent.com/arturmkrtchyan/iban4j/master/LICENSE.txt)
-A Java library for generation and validation of the International Bank Account Numbers (IBAN ISO_13616) and Business Identifier Codes (BIC ISO_9362).
+A Java library for generation and validation of the International Bank Account
+Numbers (IBAN ISO_13616) and Business Identifier
+Codes (BIC ISO_9362).
#### Iban quick examples:
@@ -65,7 +67,7 @@ A Java library for generation and validation of the International Bank Account N
org.iban4j
iban4j
- 3.2.4-RELEASE
+ 3.2.5-RELEASE
```