mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 06:52:02 -08:00
another day, another try
This commit is contained in:
parent
b6dfb0d922
commit
860e5274f5
1 changed files with 10 additions and 4 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
|
@ -43,9 +43,16 @@ jobs:
|
|||
- run: mvn test -B # -T 1C
|
||||
|
||||
- env:
|
||||
# CI_BRANCH: ${{ github.ref }}
|
||||
CI_NAME: github-actions
|
||||
# CI_PULL_REQUEST: ${{ github.event.number }}
|
||||
BRANCH: ${{ github.ref }}
|
||||
id: setup
|
||||
run: |
|
||||
echo "::set-output name=branch-name::${BRANCH#refs/heades/}"
|
||||
echo "::set-output name=pr-number::$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")"
|
||||
- env:
|
||||
CI_BUILD_URL: https://github.com/${{ github.repository }}/comit/${{ github.sha }}/checks
|
||||
CI_BRANCH: ${{ steps.setup.output.branch-name }}
|
||||
CI_NAME: github
|
||||
CI_PULL_REQUEST: ${{ steps.setup.output.pr-number }}
|
||||
run: >
|
||||
mvn
|
||||
jacoco:report
|
||||
|
|
@ -54,4 +61,3 @@ jobs:
|
|||
coveralls:report
|
||||
--define jacoco.skip=false
|
||||
--define repoToken=${{ secrets.GITHUB_TOKEN }}
|
||||
--define pullRequest=${{ github.event.number }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue