Skip to content

Commit

Permalink
feat: test running on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
y9vad9 committed Nov 6, 2023
1 parent 6232397 commit fb502bc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run tests on PR

on:
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '11'
cache: 'gradle'
- run: ./gradlew test --no-daemon

0 comments on commit fb502bc

Please sign in to comment.