-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update_install_instr
- Loading branch information
Showing
27 changed files
with
160 additions
and
682 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,33 @@ | ||
name: CI | ||
on: | ||
pull_request: | ||
branches: ["main"] | ||
push: | ||
branches: ["main"] | ||
|
||
jobs: | ||
ci: | ||
uses: qiime2/distributions/.github/workflows/lib-ci-dev.yaml@dev | ||
with: | ||
distro: metagenome | ||
additional-reports-path: ./coverage.xml | ||
additional-reports-name: coverage | ||
|
||
coverage: | ||
needs: [ci] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v3 | ||
name: 'Fetch coverage from builds' | ||
with: | ||
name: ${{ needs.ci.outputs.additional-reports-name }} | ||
path: ${{ needs.ci.outputs.additional-reports-path }} | ||
|
||
- uses: codecov/codecov-action@v3 | ||
name: 'Upload coverage' | ||
with: | ||
fail_ci_if_error: true | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
name: join-release | ||
on: | ||
workflow_dispatch: {} | ||
jobs: | ||
release: | ||
uses: qiime2/distributions/.github/workflows/lib-join-release.yaml@dev |
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,7 @@ | ||
name: tag-release | ||
on: | ||
push: | ||
branches: ["Release-*"] | ||
jobs: | ||
tag: | ||
uses: qiime2/distributions/.github/workflows/lib-tag-release.yaml@dev |
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
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
Oops, something went wrong.