Skip to content

Commit

Permalink
Testing github actions with gradle
Browse files Browse the repository at this point in the history
- Added github actions workflow
  • Loading branch information
lemm-leto committed Feb 5, 2024
1 parent ecef67b commit 1ef03a0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test Github Actions

on:
push:

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew checksum
- name: List files
run: ls -lrta

0 comments on commit 1ef03a0

Please sign in to comment.