Skip to content

dan_matrix_test

dan_matrix_test #2

Workflow file for this run

name: run-the-tests
on: [push, pull_request]
jobs:
tests:
timeout-minutes: 20
name: ${{ matrix.os }}-${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['2.7','3.4']
os: ['ubuntu:20.04','ubuntu:22.04']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Start containers
#run: docker compose -f docker-testing/harness-docker-compose.yml up -d --build
run: echo -- ${{ matrix.python }} ${{ matrix.os }} --
- name: Get Python prerequisites
run: |
python -m pip install --upgrade pip
pip install python-irodsclient
- name: Run tests
#run: python docker-testing/run_the_tests.py
run : echo run tests
- name: Stop containers
if: always()
#run: docker compose -f docker-testing/harness-docker-compose.yml down
run: echo '**' stop '**'