mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-16 12:45:48 +00:00
added changes
This commit is contained in:
parent
99a8cbfadb
commit
44a79dc724
4 changed files with 26 additions and 0 deletions
26
.github/workflows/spc_actions.yml
vendored
Normal file
26
.github/workflows/spc_actions.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: spc_git
|
||||
run-name: ${{ github.actor }}
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
Job-1:
|
||||
name: spc_test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: git clone
|
||||
uses: actions/checkout@v4
|
||||
- name: mvn clean
|
||||
run: mvn clean package
|
||||
Job-2:
|
||||
name: spc_test1
|
||||
# needs: Job-1
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: install_dotnet
|
||||
run: sudo apt update && sudo apt install dotnet-sdk-8.0 -y
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue