Skip to content

Commit

Permalink
replace gradle shell step with action
Browse files Browse the repository at this point in the history
  • Loading branch information
volatilemolotov committed May 31, 2024
1 parent 987c38d commit 6cf65c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/playground_backend_precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,15 @@ jobs:
sudo chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg
sudo apt-get update --yes
sudo apt-get install sbt --yes
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.59.0
- name: Set up Cloud SDK and its components
uses: google-github-actions/setup-gcloud@v0
with:
install_components: 'beta,cloud-datastore-emulator'
version: '${{ env.DATASTORE_EMULATOR_VERSION }}'
- name: Run PreCommit
run: ./gradlew playground:backend:precommit --info
uses: ./.github/actions/gradle-command-self-hosted-action
with:
gradle-command: :playground:backend:precommit --info

0 comments on commit 6cf65c3

Please sign in to comment.