Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-sirotin committed May 13, 2024
1 parent c6e0992 commit 29d53b3
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: ci

on:
Expand All @@ -17,18 +14,12 @@ jobs:
run: |
echo "GIT_COMMIT_SHA=${{ github.event.pull_request.head.sha }}" >> "$GITHUB_ENV"
echo "GIT_BRANCH=${GITHUB_HEAD_REF}" >> "$GITHUB_ENV"
echo "GITHUB_SHA=${GITHUB_SHA}, GITHUB_HEAD_REF=${GITHUB_HEAD_REF}"
echo "GIT_COMMIT_SHA=${GIT_COMMIT_SHA}, GIT_BRANCH=${GIT_BRANCH}"
echo $(git rev-parse HEAD)
echo $(git branch --show-current)
- name: Setup Code Climate test-reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > /tmp/cc-test-reporter
chmod +x /tmp/cc-test-reporter
/tmp/cc-test-reporter before-build --debug
echo "GITHUB_SHA=${GITHUB_SHA}, GITHUB_HEAD_REF=${GITHUB_HEAD_REF}"
echo "GIT_COMMIT_SHA=${GIT_COMMIT_SHA}, GIT_BRANCH=${GIT_BRANCH}"
/tmp/cc-test-reporter before-build
- uses: actions/checkout@v4

Expand Down Expand Up @@ -58,10 +49,4 @@ jobs:
/tmp/cc-test-reporter after-build \
--id ${{ secrets.CC_TEST_REPORTER_ID }} \
--prefix waku-poker-planning \
--exit-code $? \
--debug
echo $(git rev-parse HEAD)
echo $(git branch --show-current)
echo "GITHUB_SHA=${GITHUB_SHA}, GITHUB_HEAD_REF=${GITHUB_HEAD_REF}"
echo "GIT_COMMIT_SHA=${GIT_COMMIT_SHA}, GIT_BRANCH=${GIT_BRANCH}"
--exit-code $?

0 comments on commit 29d53b3

Please sign in to comment.