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 42a9c7c commit 928fd5f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,21 @@ on:
branches:
- main
paths:
- .github/workflows/**
- src/**
- setup.cfg
- tox.ini

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 +32,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 }}

- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2' # the full version of `docker-compose` command

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

Expand Down

0 comments on commit 928fd5f

Please sign in to comment.