We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 945d075 commit 678f7c0Copy full SHA for 678f7c0
.github/workflows/codacy.yml
@@ -6,7 +6,7 @@ jobs:
6
build:
7
8
runs-on: ubuntu-latest
9
- environment: dev
+ environment: production
10
11
steps:
12
- uses: actions/checkout@v4
@@ -15,11 +15,13 @@ jobs:
15
with:
16
java-version: '8'
17
distribution: 'temurin'
18
+ cache: maven
19
- name: Test with Maven
20
run: mvn clean test
21
22
- name: Codacy Coverage Reporter
23
shell: bash
24
run: |
- bash <(curl -Ls https://coverage.codacy.com/get.sh) report --codacy-api-base-url ${{ vars.API_BASE_URL }} -t ${{ secrets.CODACY_PROJECT_TOKEN }}
25
+ CODACY_PROJECT_TOKEN=${{ secrets.CODACY_PROJECT_TOKEN }} \
26
+ bash <(curl -Ls https://coverage.codacy.com/get.sh) report
27
0 commit comments