Skip to content

Commit

Permalink
Merge dev into main for release 3.2.0
Browse files Browse the repository at this point in the history
Release 3.2.0
  • Loading branch information
serivesmejia authored Oct 5, 2021
2 parents 0722107 + 4af510f commit fc42a1d
Show file tree
Hide file tree
Showing 183 changed files with 18,151 additions and 17,853 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gradlew text eol=lf
62 changes: 31 additions & 31 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Windows 10]
- Version [e.g. 2.0.0]

**Additional context**
Add any other context about the problem here.
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Windows 10]
- Version [e.g. 2.0.0]

**Additional context**
Add any other context about the problem here.
40 changes: 20 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
30 changes: 15 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Pull Requests

Please note that we accept pull requests from anyone, but that does not mean it will be merged.

## What kind of change does this PR introduce?
* Fix
* Feature
* Codestyle
* Refactor
* Other

## Did this PR introduce a breaking change?
_A breaking change includes anything that breaks backwards compatibility either at compile or run time._
* Yes, please list breaking changes
* No
# Pull Requests

Please note that we accept pull requests from anyone, but that does not mean it will be merged.

## What kind of change does this PR introduce?
* Fix
* Feature
* Codestyle
* Refactor
* Other

## Did this PR introduce a breaking change?
_A breaking change includes anything that breaks backwards compatibility either at compile or run time._
* Yes, please list breaking changes
* No
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: 2
updates:
- package-ecosystem: "gradle" # See documentation for possible values
directory: "/" # Location of package manifests
target-branch: "dev"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
target-branch: "dev"
schedule:
interval: "weekly"
version: 2
updates:
- package-ecosystem: "gradle" # See documentation for possible values
directory: "/" # Location of package manifests
target-branch: "dev"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
target-branch: "dev"
schedule:
interval: "weekly"
98 changes: 49 additions & 49 deletions .github/workflows/build_ci.yml
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
name: Build and test with Gradle

on: [push, pull_request]

jobs:
test_linux:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: adopt
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test with Gradle
run: ./gradlew test

test_windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: adopt
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test with Gradle
run: ./gradlew test

test_mac:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: adopt
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test with Gradle
run: ./gradlew test
name: Build and test with Gradle

on: [push, pull_request]

jobs:
test_linux:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: adopt
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test with Gradle
run: ./gradlew test

test_windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: adopt
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test with Gradle
run: ./gradlew test

test_mac:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: adopt
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test with Gradle
run: ./gradlew test
56 changes: 28 additions & 28 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: "Validate Gradle Wrapper"

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
validationPlugin:
name: "Validation Plugin"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
validationJavaSample:
name: "Validation Java Sample"
runs-on: ubuntu-latest
defaults:
run:
working-directory: demo/java
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
name: "Validate Gradle Wrapper"

on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
validationPlugin:
name: "Validation Plugin"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
validationJavaSample:
name: "Validation Java Sample"
runs-on: ubuntu-latest
defaults:
run:
working-directory: demo/java
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
Loading

0 comments on commit fc42a1d

Please sign in to comment.