diff options
author | Linnea Gräf <nea@nea.moe> | 2024-05-02 16:05:38 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-05-02 16:05:38 +0200 |
commit | 5316d761132a28df639eb70099c8af367f792733 (patch) | |
tree | 2a16543bb74216b7a853332bf7382dbfbaabcc5d /.github | |
parent | 5f0552a7ea251a52fb89f7886f6a8dd48ce566d5 (diff) | |
download | blog-infra-5316d761132a28df639eb70099c8af367f792733.tar.gz blog-infra-5316d761132a28df639eb70099c8af367f792733.tar.bz2 blog-infra-5316d761132a28df639eb70099c8af367f792733.zip |
Split up html generation
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..a9ea5f6 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Test + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v4 + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 21 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v3 + - name: Test with Gradle + run: ./gradlew test |