Skip to content

Commit

Permalink
CI: fix docker-compose not found error
Browse files Browse the repository at this point in the history
* Change branch Incorrect type from string to array
* update docker-compose command to docker compose
  • Loading branch information
Samk13 committed Aug 3, 2024
1 parent a347562 commit 8411878
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# This file is part of Invenio.
# Copyright (C) 2016-2024 CERN.
# Copyright (C) 2022 Graz University of Technology.
# Copyright (C) 2024 KTH Royal Institute of Technology.
#
# Invenio is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -11,9 +12,11 @@ name: CI

on:
push:
branches: master
branches:
- master
pull_request:
branches: master
branches:
- master
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 3 * * 6'
Expand Down Expand Up @@ -66,7 +69,7 @@ jobs:
pip install ".[$EXTRAS]"
pip freeze
docker --version
docker-compose --version
docker compose --version
- name: Run tests
run: ./run-tests.sh

0 comments on commit 8411878

Please sign in to comment.