Skip to content

Commit

Permalink
Added github action to test build the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
bmispelon committed Apr 19, 2024
1 parent fd860d0 commit fc5e4ff
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/docker-test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Docker test build

on:
pull_request:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
build-image:
runs-on: ubuntu-latest

# steps taken (and trimmed) from docker-publish.yml
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: false

0 comments on commit fc5e4ff

Please sign in to comment.