Skip to content

Commit

Permalink
[⚙📈🐳] Added container build check
Browse files Browse the repository at this point in the history
  • Loading branch information
RJMurg committed Oct 16, 2024
1 parent 71c94be commit 0395daa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Test Build the Container"
on:
pull_request:
branches:
- 'dev'
- 'main'

jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo "Job triggered by ${{ github.event_name }}."
- uses: actions/checkout@v3
- run: docker --version
- run: docker build -t plume .
- run: docker image ls | grep plume

0 comments on commit 0395daa

Please sign in to comment.