Skip to content

Commit

Permalink
github action (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkoo authored Feb 4, 2022
1 parent d45f6ba commit 734353d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 21 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Build with Maven
run: mvn -B -U clean install
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ For more info how it works, how to configure, ... [See Wiki](https://github.com/

## Build & run

Java 11 is required

```
$ ./mvnw install && java -jar target/boxitory-{version}.jar
```
Expand All @@ -29,14 +31,3 @@ $ ./mvnw clean package docker:build docker:run
```

By default, container expose port *8083* with running app. Files with boxes needs to be stored in ./boxes dir.
#### Build status (travis-ci)

devel [![Build Status](https://travis-ci.org/sparkoo/boxitory.svg?branch=devel)](https://travis-ci.org/sparkoo/boxitory)
[![codecov](https://codecov.io/gh/sparkoo/boxitory/branch/devel/graph/badge.svg)](https://codecov.io/gh/sparkoo/boxitory)
[![codebeat badge](https://codebeat.co/badges/40f8804c-f98d-4f2c-958a-737c901fa5fe)](https://codebeat.co/projects/github-com-sparkoo-boxitory-devel)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/4bdd9bd53659424e96c4119d9c8fa7fc)](https://www.codacy.com/app/sparkoo/boxitory?utm_source=github.com&utm_medium=referral&utm_content=sparkoo/boxitory&utm_campaign=Badge_Grade)


master: [![Build Status](https://travis-ci.org/sparkoo/boxitory.svg?branch=master)](https://travis-ci.org/sparkoo/boxitory)


0 comments on commit 734353d

Please sign in to comment.