Skip to content

completed challenge 01 from codember and add suport for github action… #1

completed challenge 01 from codember and add suport for github action…

completed challenge 01 from codember and add suport for github action… #1

Workflow file for this run

name: Run test java
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17 for x64
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
architecture: x64
- name: Build with maven and running test UNIT and Integration
run: mvn -B verify --file pom.xml