Skip to content

Commit

Permalink
Add simple GHA to build the image
Browse files Browse the repository at this point in the history
  • Loading branch information
jfilter committed Jun 17, 2024
1 parent 19fe5bf commit 31f0422
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI tests

on:
workflow_dispatch:
pull_request:
branches: ["master"]

push:
branches: ["master"]

jobs:
build_image:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4

- name: Build docker image
run: docker-compose build

0 comments on commit 31f0422

Please sign in to comment.