feat(workflows/test): Add matrix for different tests #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'README.md' | ||
- 'dist/**' | ||
- 'LICENSE' | ||
- '.gitignore' | ||
- '.github/workflows/python-publish.yml' | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
os: [ubuntu] | ||
os_version: [20.04, 22.04] | ||
postgres_version: [9.5, 10, 11, 12, 13] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Collect Workflow Telemetry | ||
uses: runforesight/workflow-telemetry-action@v1 | ||
- name: Start containers | ||
run: docker-compose -f "deployment/docker-compose.yml" up -d --build | ||
env: | ||
OS: ${{os}} | ||
Check failure on line 31 in .github/workflows/integration-test.yml GitHub Actions / TestInvalid workflow file
|
||
OS_VERSION: ${{os_version}} | ||
POSTGRES_VERSION: ${{postgres_version}} | ||
- name: Sleep so containers are ready | ||
run: sleep 15 | ||
- name: Check container status | ||
run : docker ps -a | ||
- name: Run tests | ||
run: docker-compose -f "deployment/docker-compose.yml" exec -T replica python3 integration-test.py |