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-06-19 13:02:12 +09:00
|
|
|
uses: actions/checkout@v4.1.7
|
2022-03-30 22:08:52 +09:00
|
|
|
- name: Build Docker image
|
2024-06-19 13:00:11 +09:00
|
|
|
uses: docker/build-push-action@v6.0.0
|
2022-03-30 22:08:52 +09:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: false
|