Skip to content

chore(deps): bump commons-io:commons-io from 2.16.1 to 2.17.0 #153

chore(deps): bump commons-io:commons-io from 2.16.1 to 2.17.0

chore(deps): bump commons-io:commons-io from 2.16.1 to 2.17.0 #153

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build & Publish
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
checks: write
pull-requests: write
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '18'
distribution: 'temurin'
cache: gradle
- name: Build
run: ./gradlew -Pversion=${{ github.event.release.tag_name || '1.0-SNAPSHOT' }} build -x check
- name: Unit Tests
run: ./gradlew -Pversion=${{ github.event.release.tag_name || '1.0-SNAPSHOT' }} test
- name: Integration Tests
run: ./gradlew -Pversion=${{ github.event.release.tag_name || '1.0-SNAPSHOT' }} integrationTest
env:
AIRTABLE_TOKEN: ${{ vars.AIRTABLE_TOKEN }}
AIRTABLE_BASE: ${{ vars.AIRTABLE_BASE }}
- name: Archive test report
uses: actions/upload-artifact@v4
with:
name: Test report
path: build/reports/tests
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
build/test-results/**/*.xml