Created
May 10, 2024 14:00
-
-
Save JavaBootProgrammer/a0f260335fb9c51b3d9fdb3deba016d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Running from GitHub | |
| on: push | |
| jobs: | |
| my-job: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: my-step | |
| run: echo running ${{ github.event.repository.name }} | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Run the Maven verify phase | |
| run: mvn --batch-mode --update-snapshots verify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment