Skip to content

Commit

Permalink
Managed by Terraform, updates managed through: https://github.com/Air…
Browse files Browse the repository at this point in the history
  • Loading branch information
airthings-atlantis committed Dec 11, 2024
1 parent 0eec65a commit 0f67640
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Tests
on:
pull_request
env:
JDK_VERSION: 11
JDK_DISTRIBUTION: adopt

jobs:
unit_tests:
runs-on: ubuntu-latest
name: Unit tests
steps:
- uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: ${{ env.JDK_DISTRIBUTION }}
java-version: ${{ env.JDK_VERSION }}

- name: Run unit tests
uses: gradle/[email protected]
env:
GITHUB_ACCESS_TOKEN_READ_PACKAGES: ${{ secrets.ACCESS_TOKEN_READ_PACKAGES }}
with:
arguments: test

0 comments on commit 0f67640

Please sign in to comment.