2023-03-31 22:25:44 +00:00
|
|
|
name: "Docker check"
|
2022-03-30 13:08:52 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2022-04-20 03:28:58 +00:00
|
|
|
paths:
|
2023-03-31 22:25:44 +00:00
|
|
|
- "Dockerfile"
|
|
|
|
- ".github/workflows/docker-pr.yml"
|
2022-03-30 13:08:52 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-12-13 03:49:20 +00:00
|
|
|
uses: actions/checkout@v3.2.0
|
2022-03-30 13:08:52 +00:00
|
|
|
- name: Build Docker image
|
2022-10-15 09:44:48 +00:00
|
|
|
uses: docker/build-push-action@v3.2.0
|
2022-03-30 13:08:52 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: false
|