Skip to content

Commit

Permalink
refactor: rearrange steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cekinmezyucel committed Apr 24, 2023
1 parent 73cea8b commit 4d2d314
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/validation-check-with-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
repository: cekinmezyucel/zally
token: ${{ github.token }}
path: zally
- name: Set up JDK
- name: Setup JDK
uses: actions/setup-java@v2
with:
java-version: '17'
Expand All @@ -28,9 +28,7 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: Add Zally CLI Path
run: echo "zally/cli/zally" >> $GITHUB_PATH
- name: Run Zally server
- name: Run Zally Server
run: |
cd zally/server
chmod +x gradlew
Expand All @@ -42,5 +40,7 @@ jobs:
run: |
cd zally/cli/zally
go build
- name: Lint file
- name: Add Zally CLI To Path
run: echo "zally/cli/zally" >> $GITHUB_PATH
- name: Lint File
run: zally lint ${{ inputs.file-path }}

0 comments on commit 4d2d314

Please sign in to comment.