feat(NF-777): Replace S3Mock with Minio using Fabric8 plugin. #251
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches-ignore: | |
- master | |
paths-ignore: | |
- '.github/**' | |
- '**/README.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'maven' | |
- name: Perform build | |
run: mvn verify | |
- name: Notify developers | |
uses: 8398a7/action-slack@v3 | |
with: | |
username: GitHub | |
icon_emoji: octocat | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref | |
text: ${{ github.workflow }} ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
if: always() |