Skip to content

Commit 0c38954

Browse files
committed
Add a GitHub action to launch tests
1 parent 2470c91 commit 0c38954

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Test Docker Compose Overrides
2+
on: [push, pull_request]
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- name: Install Python
10+
uses: actions/setup-python@v4
11+
with:
12+
python-version: '3.10'
13+
- name: Install dependencies
14+
run: pip install -r requirements.txt
15+
- name: Run tests
16+
run: pytest tests/

0 commit comments

Comments
 (0)