chore: bump @commitlint/config-conventional from 20.0.0 to 20.2.0 (#25) #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dockerfile build test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| 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@v6 | |
| # 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 |