Update dependency org.springframework.boot:spring-boot-starter-parent to v3.4.3 #44
This file contains 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: Build and smoke-test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build | |
run: mvn -B spring-boot:build-image -Pnative | |
- name: Run application | |
run: | | |
docker run -d --rm -p 8080:8080 --name app ghcr.io/derkoe/spring-boot-native-test | |
sleep 5 | |
docker logs app | |
curl -v http://localhost:8080 | |
docker stop app | |
- name: Push image | |
if: ${{ github.event_name != 'pull_request'}} | |
run: | | |
docker push ghcr.io/derkoe/spring-boot-native-test |