From 7ca6fc63f16809a653a4d0a02279fdbf860a0d71 Mon Sep 17 00:00:00 2001 From: Nathaniel Clark Date: Mon, 13 May 2024 11:19:10 -0400 Subject: [PATCH] github: Fix workflow Signed-off-by: Nathaniel Clark --- .github/workflows/ci.yml | 17 +++++++++++++++++ .github/workflows/workflows.yml | 9 --------- 2 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/workflows.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..15986fb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: RPN Push + +on: + push: + branches: + - main + +jobs: + steps: + - uses: actions/checkout@main + - 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)