2022-03-30 22:08:52 +09:00
|
|
|
name: 'Docker check'
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2022-04-20 12:28:58 +09:00
|
|
|
paths:
|
2022-03-30 22:08:52 +09:00
|
|
|
- 'Dockerfile'
|
2022-04-20 12:28:58 +09:00
|
|
|
- '.github/workflows/docker-pr.yml'
|
2022-03-30 22:08:52 +09:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-05-22 20:54:48 +09:00
|
|
|
uses: actions/checkout@v4.1.6
|
2022-03-30 22:08:52 +09:00
|
|
|
- name: Build Docker image
|
2024-04-25 21:58:56 +09:00
|
|
|
uses: docker/build-push-action@v5.3.0
|
2022-03-30 22:08:52 +09:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: false
|