Skip to content

Commit

Permalink
fix ci: install docker compose plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleh Strakachuk committed Aug 16, 2024
1 parent e69f461 commit 3cc4a71
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ on:
jobs:
test:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu
# - Windows
# - MacOs
py:
Expand All @@ -31,13 +31,17 @@ jobs:
- "3.8"
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py }}

- name: Install docker compose plugin
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install docker-compose-plugin

- name: Docker compose up
run: make docker-compose-up

Expand Down

0 comments on commit 3cc4a71

Please sign in to comment.