Skip to content

Update test_workflow.yml test 3 #4

Update test_workflow.yml test 3

Update test_workflow.yml test 3 #4

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
cache: maven
- name: Build with Maven
run: mvn -B package -Pnative -DskipTests
working-directory: backend