diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..6c1d528 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: RPN Push + +on: + push: + branches: + - main + +jobs: + steps: + - uses: actions/checkout@v4 + - uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: false # optional (default = false) + files: ./coverage1.xml,./coverage2.xml # optional + flags: unittests # optional + token: ${{ secrets.CODECOV_TOKEN }} # required + verbose: true # optional (default = false) diff --git a/.github/workflows/workflows.yml b/.github/workflows/workflows.yml deleted file mode 100644 index e42a426..0000000 --- a/.github/workflows/workflows.yml +++ /dev/null @@ -1,9 +0,0 @@ -steps: -- uses: actions/checkout@main -- uses: codecov/codecov-action@v4 - with: - fail_ci_if_error: true # optional (default = false) - files: ./coverage1.xml,./coverage2.xml # optional - flags: unittests # optional - token: ${{ secrets.CODECOV_TOKEN }} # required - verbose: true # optional (default = false)