Skip to content

Commit

Permalink
build: Create ci.yml
Browse files Browse the repository at this point in the history

Co-authored-by: Sverre Nystad <89105607+SverreNystad@users.noreply.github.com>
  • Loading branch information
andreaslhjulstad and SverreNystad authored Sep 20, 2024
1 parent ec2b930 commit 6ca7494
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: Build docker image and run tests
run: |
docker compose build
docker compose up -d
docker compose down

0 comments on commit 6ca7494

Please sign in to comment.