Updating CI.
Some checks failed
Deploy Greenlight API / deploy (push) Failing after 39s

This commit is contained in:
Maxime Delporte
2025-10-30 15:27:11 +01:00
parent f96baad6a8
commit 6198a930ee

View File

@@ -23,6 +23,12 @@ jobs:
with:
go-version: "1.23" # adapte selon ta version
- name: Applying database migrations
run: |
curl -L https://github.com/golang-migrate/migrate/releases/download/v4.19.0/migrate.linux-amd64.tar.gz -o migrate.tar.gz
tar -xzf migrate.tar.gz
migrate -path=./migrations -database=$GREENLIGHT_DB_DSN up
- name: Build API
run: |
go mod tidy