Skip to content

Commit

Permalink
Add a build test to PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaubrey committed Feb 8, 2024
1 parent 82efc64 commit 880b4ce
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ on:
- image-server

jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
# This seems to work faster than pulling during docker compose up
- name: Pull images
run: docker compose pull --quiet
- name: Bring up image image-server
run: docker compose up --wait

build-and-push:
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/master'
Expand Down

0 comments on commit 880b4ce

Please sign in to comment.