Skip to content

Commit

Permalink
back to working state
Browse files Browse the repository at this point in the history
  • Loading branch information
leandroutn committed Sep 4, 2024
1 parent 58eaced commit 15205ef
Show file tree
Hide file tree
Showing 40 changed files with 403 additions and 875 deletions.
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ assignees: ''

---

**Versions Used**
**Versions Used**
<!-- The ver. -->

**Description**
**Description**
<!-- A clear and concise description of the problem. -->

**How to reproduce**
**How to reproduce**
<!-- Code, config and/or steps needed to reproduce the problem. -->

**Possible Solution**
**Possible Solution**
<!--- Optional: only if you have suggestions on a fix/reason for the bug -->

**Additional context**
**Additional context**
<!-- Optional: any other context about the problem: log messages, screenshots, etc. -->
6 changes: 0 additions & 6 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,26 @@
<!--- Provide a general summary of your changes in the Title above -->

## Description

<!--- Describe your changes -->

## Related Issue

<!--- This project only accepts pull requests related to open issues -->
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->

## Motivation and Context

<!--- Why is this change required? What problem does it solve? -->

## How Has This Been Tested?

<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->

## Documentation:

<!--- Upon PR's approval, link the wiki page for your corresponding changes here. -->

## Checklist:

- [ ] I have updated the documentation accordingly.
- [ ] I have assigned the correct milestone or created one if non-existent.
- [ ] I have correctly labeled this pull request.
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Continuous Integration
on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build -PignoreCheckFailures=true -PgithubUsername=${{ github.actor }} -PgithubPassword=${{ secrets.GITHUB_TOKEN }}

- name: Checkstyle
uses: jwgmeligmeyling/[email protected]
with:
path: ./build/reports/checkstyle/*.xml

- name: Test Report
uses: scacap/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: ./**/build/test-results/test/*.xml

- name: Archive build output
uses: actions/upload-artifact@v2
with:
name: gradle-build
path: ./**/build/
25 changes: 25 additions & 0 deletions .github/workflows/inspect.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Intellij
on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Run Intellij
uses: mridang/[email protected]
with:
target: /github/workspace
profile: /github/workspace/.idea/inspectionProfiles/CI.xml
output: output
verbosity: v2
scope: Inspection

- name: Archive inspection results
if: ${{ failure() }}
uses: actions/upload-artifact@v1
with:
name: inspection-results
path: output
12 changes: 0 additions & 12 deletions .github/workflows/qodana.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/tests.yml

This file was deleted.

47 changes: 23 additions & 24 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/scala_compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 15205ef

Please sign in to comment.