forked from project-openubl/xhandler-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove v1 data * save config * Update license * Create enrich rules * Create process rules * Add summary rules * Add sender and renderer tests * Add invoice tests * Add Forma de pago tests * Forma de pago refactoring * Add Issue 30 test * Add CreditNote * Add debit note * Add fecha vencimiento * Save anticipos but with failures * Anticipos tested * format code * Add direccion de entrega * Add detraccion * Add percepcion * Add licenses * Add CI changes * Add CI changes * Add CI changes * Add CI changes * Add CI changes * Add CI changes
- Loading branch information
1 parent
0d590c9
commit 01aaa32
Showing
476 changed files
with
9,547 additions
and
39,189 deletions.
There are no files selected for viewing
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,19 @@ | ||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
commit-message: | ||
prefix: "GitHub Actions" | ||
include: "scope" | ||
# Maintain dependencies for pom.xml | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
commit-message: | ||
prefix: "Maven pom.xml" | ||
include: "scope" |
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
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,20 @@ | ||
name: CI | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
env: | ||
CI: true | ||
|
||
jobs: | ||
linux-jvm-tests: | ||
name: JDK ${{matrix.java-version}} JVM Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: "temurin" | ||
java-version: ${{ matrix.java-version }} | ||
- name: Build with Maven | ||
run: mvn verify |
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,28 @@ | ||
name: Master branch | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
code-scan: | ||
name: Code Scan | ||
if: ${{ github.event_name != 'pull_request' && github.repository_owner == 'project-openubl' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: "temurin" | ||
java-version: 8 | ||
- name: Build with Maven and Coverage/Sonar | ||
run: mvn verify -P coverage,sonar | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
- name: Codecov metrics | ||
uses: codecov/codecov-action@v1 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.