mirror of
https://github.com/actions/checkout.git
synced 2026-07-03 02:51:43 +00:00
Compare commits
3 Commits
04fb1c8e5d
...
a66fb61287
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a66fb61287 | ||
|
|
7a020261fa | ||
|
|
bd5c14db95 |
23
pr.yaml
Normal file
23
pr.yaml
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
# This workflow will execute on pull request to dev branch
|
||||
|
||||
name: pr-workflow
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- dev
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: get the code
|
||||
uses: actions/checkout@v6
|
||||
- name: compile the code
|
||||
run: mvn compile
|
||||
- name: test the code
|
||||
run: mvn test
|
||||
- name: create the package
|
||||
run: mvn package
|
||||
|
||||
Loading…
Reference in New Issue
Block a user