Skip to content

Commit

Permalink
feat: Test updater library
Browse files Browse the repository at this point in the history
  • Loading branch information
mkilchhofer committed Dec 16, 2023
1 parent 0c551e1 commit 3e7c5f5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: updater
on:
pull_request:
paths:
- 'updater/**'

jobs:
build:
name: Test updater library
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Set up Go 1.19
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: 1.19.x
id: go

- name: Build image
run: |
docker-compose -f backend/docker-compose.test.yaml up -d postgres
go test -v

0 comments on commit 3e7c5f5

Please sign in to comment.