dan_matrix_test #2
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: 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 '**' |