-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
49 additions
and
29 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @pivovarit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "maven" | ||
- package-ecosystem: "gradle" | ||
target-branch: "main" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
time: "02:00" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
target-branch: "main" | ||
schedule: | ||
interval: "daily" | ||
time: "02:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: build | ||
on: | ||
push: | ||
branches: | ||
- version/** | ||
pull_request: | ||
branches: | ||
- version/** | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: [ '8', '11', '17', '21', '22', '23', '24-ea' ] | ||
architecture: [ 'x64' ] | ||
fail-fast: false | ||
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ matrix.java }} | ||
architecture: ${{ matrix.architecture }} | ||
cache: 'maven' | ||
|
||
- name: Build with Maven | ||
run: mvn test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.vavr/vavr-test/badge.png)](https://maven-badges.herokuapp.com/maven-central/io.vavr/vavr-test) | ||
[![Build Status](https://travis-ci.org/vavr-io/vavr-test.png)](https://travis-ci.org/vavr-io/vavr-test) | ||
[![codecov](https://codecov.io/gh/vavr-io/vavr-test/branch/master/graph/badge.svg)](https://codecov.io/gh/vavr-io/vavr-test) | ||
[![Gitter Chat](https://badges.gitter.im/Join%20Chat.png)](https://gitter.im/vavr-io/vavr) | ||
|
||
# [Vavr](http://vavr.io/) Property Testing | ||
# [Vavr](https://vavr.io/) Property Testing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,11 @@ We use these goals frequently to keep the dependencies and plugins up-to-date: | |
<packaging>jar</packaging> | ||
<name>Vavr Test</name> | ||
<description>A property check framework for Vavr.</description> | ||
<url>http://vavr.io</url> | ||
<url>https://vavr.io</url> | ||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
@@ -46,6 +46,11 @@ We use these goals frequently to keep the dependencies and plugins up-to-date: | |
<name>Daniel Dietrich</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>pivovarit</id> | ||
<name>Grzegorz Piwowarek</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|