Skip to content

Commit

Permalink
Create github action to verify that the app builds
Browse files Browse the repository at this point in the history
  • Loading branch information
anirbanmu committed Mar 16, 2024
1 parent 7dfeb22 commit 5266d23
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build verification

on:
push:
branches:
- main
pull_request:

jobs:
container-image-build:
runs-on: ubuntu-latest
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
push: false

0 comments on commit 5266d23

Please sign in to comment.