Skip to content

Commit

Permalink
chore: add basic GH actions (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastonfournier authored Jul 15, 2024
1 parent 8289f0c commit 320fb08
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Add new item to project board

on:
issues:
types:
- opened
pull_request_target:
types:
- opened

jobs:
add-to-project:
uses: unleash/.github/.github/workflows/add-item-to-project.yml@main
secrets: inherit
19 changes: 19 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: PR

on:
pull_request:

jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
name: Checkout code
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: Build, test, coverage
run: ./gradlew build

0 comments on commit 320fb08

Please sign in to comment.