Skip to content

Commit

Permalink
root: add check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Com6235 committed Jul 8, 2024
1 parent b966acf commit 593ad36
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: check.yml
on:
push:
branches:
- dev

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout dev branch
uses: actions/checkout@v4
with:
ref: 'dev'

- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'

- name: Run ./gradlew check
run: ./gradlew check

0 comments on commit 593ad36

Please sign in to comment.