Skip to content
Open

a #20

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/basic-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
name: Continuous integration example

on:
push:
workflow_dispatch:

jobs:

test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
java: [ '11', '17', '21']
name: Java ${{ matrix.java }} sample
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
java-version: ${{ matrix.java }}
- run: mvn test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Ejemplo de Integración Continua con GitHub Actions

Este proyecto ofrece una Calculadora hecha en Java
Este proyecto ofrece una Calculadora hecha en Java, que bien