Skip to content

Merge branch 'main' of https://github.com/Bulletdev/pipeline-automati… #14

Merge branch 'main' of https://github.com/Bulletdev/pipeline-automati…

Merge branch 'main' of https://github.com/Bulletdev/pipeline-automati… #14

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '21'
java-package: 'jdk'
architecture: 'x64'
check-latest: false
server-id: 'github'
server-username: '${{ github.actor }}'
server-password: '${{ secrets.GITHUB_TOKEN }}'
overwrite-settings: true
- name: Clone the repository
run: git clone https://github.com/bulletdev/pipeline-automatizador.git
- name: List files in repository directory
run: ls -la pipeline-automatizador
- name: Compile the project
working-directory: pipeline-automatizador/src/main/java/com/pipelinetools
run: javac PipelineConfigApp.java
- name: Run the application
working-directory: pipeline-automatizador/src/main/java/com/pipelinetools
run: java PipelineConfigApp