2022-03-30 16:08:52 +03:00
|
|
|
name: 'Docker check'
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2022-04-20 06:28:58 +03:00
|
|
|
paths:
|
2022-03-30 16:08:52 +03:00
|
|
|
- 'Dockerfile'
|
2022-04-20 06:28:58 +03:00
|
|
|
- '.github/workflows/docker-pr.yml'
|
2022-03-30 16:08:52 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-06-13 02:21:07 +03:00
|
|
|
uses: actions/checkout@v3.5.3
|
2022-03-30 16:08:52 +03:00
|
|
|
- name: Build Docker image
|
2023-06-13 02:29:18 +03:00
|
|
|
uses: docker/build-push-action@v4.1.0
|
2022-03-30 16:08:52 +03:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: false
|