Bump version, update release notes #220
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Run integration tests | |
env: | |
S3_LINODE_TEST_KEY: ${{ secrets.S3_LINODE_TEST_KEY }} | |
S3_LINODE_TEST_SECRET: ${{ secrets.S3_LINODE_TEST_SECRET }} | |
S3_AWS_TEST_KEY: ${{ secrets.S3_AWS_TEST_KEY }} | |
S3_AWS_TEST_SECRET: ${{ secrets.S3_AWS_TEST_SECRET }} | |
run: ./gradlew -PintegrationTests check | |
- name: Test and build the app | |
run: ./gradlew build |