Skip to content

Commit

Permalink
Replace Travis with GitHub Actions (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit authored Aug 16, 2024
1 parent 38cedee commit 19734f7
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 27 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: build
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- '**.yml'
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'

- name: Build with Maven
run: mvn test-compile

24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
[![Gitter Chat](https://badges.gitter.im/Join%20Chat.png)](https://gitter.im/vavr-io/vavr-benchmark)

# [Vavr](http://vavr.io/) Benchmarks
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ We use these goals frequently to keep the dependencies and plugins up-to-date:
<modelVersion>4.0.0</modelVersion>
<groupId>io.vavr</groupId>
<artifactId>vavr-benchmark</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-alpha-4</version>
<packaging>jar</packaging>
<name>Vavr Benchmark</name>
<description>Benchmarks for Vavr.</description>
Expand All @@ -33,6 +33,11 @@ We use these goals frequently to keep the dependencies and plugins up-to-date:
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>pivovarit</id>
<name>Grzegorz Piwowarek</name>
<email>gpiwowarek@gmail.com</email>
</developer>
<developer>
<id>danieldietrich</id>
<name>Daniel Dietrich</name>
Expand Down

0 comments on commit 19734f7

Please sign in to comment.