Skip to content

chore: add docker test #1

chore: add docker test

chore: add docker test #1

Workflow file for this run

name: Dockerfile build test

Check failure on line 1 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

(Line: 3, Col: 1): Unexpected value 'pull_request'
pull_request:
types: ["synchronize", "opened", "reopened", "ready_for_review"]
branches:
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
# Build using your Makefile target (runs: docker build -t hello-universe-db .)
- name: Build Docker image
run: make build
# Quick sanity check that the image exists
- name: Verify image was built
run: docker image inspect hello-universe-db:latest > /dev/null