Skip to content

Commit e2a2cfd

Browse files
chore: install docker-compose (#1099)
* chore: install docker-compose * chore: update licence year * chore: fix lint-python
1 parent 9515dce commit e2a2cfd

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/lint-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515
- run: pip install --user ruff
16-
- run: ruff --ignore="E722,F40,F841" --line-length=320 --target-version=py37 .
16+
- run: ruff check --ignore="E722,F40,F841" --line-length=320 --target-version=py37 .

.github/workflows/test-and-deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
username: ${{ secrets.DOCKER_USERNAME }}
3232
password: ${{ secrets.DOCKER_AUTH_TOKEN }}
3333

34+
- name: Install Docker Compose
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install -y docker-compose
38+
3439
- name: Build & Test
3540
run: make test-docker version=${{ matrix.python-version }}
3641

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (C) 2023, Twilio SendGrid, Inc. <help@twilio.com>
3+
Copyright (C) 2025, Twilio SendGrid, Inc. <help@twilio.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

0 commit comments

Comments
 (0)