-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (35 loc) · 949 Bytes
/
aws-s3-main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: aws-s3-project
on:
push:
paths:
- "aws-s3-project/**"
branches: [ main ]
pull_request:
paths:
- "aws-s3-project/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Run Unit & Integration Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./aws-s3-project
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: 17
distribution: 'zulu'
cache: 'maven'
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw clean verify