Skip to content

Commit

Permalink
Primeira exec do pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislima committed Sep 4, 2024
1 parent d1d0f0a commit 8a08563
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,25 @@ on:
branches: [ "main" ]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: |
pwd
ls
cd Aula-GitHub-Actions
mvn clean test site
build:

runs-on: ubuntu-latest
Expand Down

0 comments on commit 8a08563

Please sign in to comment.