mirror of https://github.com/actions/checkout.git
Merge e94b1128e6 into 0c366fd6a8
This commit is contained in:
commit
cc3201c3e9
|
|
@ -28,6 +28,7 @@ When Git 2.18 or higher is not in your PATH, falls back to the REST API to downl
|
|||
|
||||
### Note
|
||||
|
||||
|
||||
Thank you for your interest in this GitHub action, however, right now we are not taking contributions.
|
||||
|
||||
We continue to focus our resources on strategic areas that help our customers be successful while making developers' lives easier. While GitHub Actions remains a key part of this vision, we are allocating resources towards other areas of Actions and are not taking contributions to this repository at this time. The GitHub public roadmap is the best place to follow along for any updates on features we’re working on and what stage they’re in.
|
||||
|
|
|
|||
|
|
@ -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