-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove workflow dependencies (#168)
* 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
Showing
1 changed file
with
14 additions
and
17 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 |
---|---|---|
|
@@ -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: ./ | ||
|
||
|
@@ -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: ./ | ||
|
@@ -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: ./ | ||
|