Skip to content

Commit

Permalink
ci: remove workflow dependencies (#168)
Browse files Browse the repository at this point in the history
* ci(test): remove workflow deps in `xml-out-usage` job

* ci(test): remove workflow deps in `coveralls-usage` job

* ci(test): remove upload artifact step in `standard-usage` job
  • Loading branch information
threeal authored Jan 28, 2024
1 parent e67dfd5 commit 50d78d9
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,6 @@ jobs:
cxx-compiler: g++
run-test: true

- name: Upload this project as an artifact
uses: actions/[email protected]
with:
name: project-with-build-${{ matrix.os }}
path: |
*
!lib/
!node_modules/
- name: Use this action
uses: ./

Expand Down Expand Up @@ -150,13 +141,16 @@ jobs:
fail-under-line: 100

xml-out-usage:
needs: standard-usage
runs-on: ubuntu-latest
steps:
- name: Download the project artifact
uses: actions/[email protected]
- name: Checkout
uses: actions/[email protected]

- name: Build and Test Sample Project
uses: threeal/[email protected]
with:
name: project-with-build-ubuntu
source-dir: sample
run-test: true

- name: Use this action to generate an XML report
uses: ./
Expand All @@ -167,13 +161,16 @@ jobs:
run: cat coverage.xml

coveralls-usage:
needs: standard-usage
runs-on: ubuntu-latest
steps:
- name: Download the project artifact
uses: actions/[email protected]
- name: Checkout
uses: actions/[email protected]

- name: Build and Test Sample Project
uses: threeal/[email protected]
with:
name: project-with-build-ubuntu
source-dir: sample
run-test: true

- name: Use this action to generate a Coveralls report
uses: ./
Expand Down

0 comments on commit 50d78d9

Please sign in to comment.