mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-04 21:31:11 +00:00
23 lines
400 B
YAML
23 lines
400 B
YAML
name: Yaml file in Spring Boot clinic
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
main
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
maven-building:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: first_step
|
|
uses: actions/checkout@v4
|
|
- name: second_step
|
|
run: mvn clean
|
|
mvn compile
|
|
mvn package
|
|
|