Skip to content

Build docker containers before executing 'viash run' #107

Build docker containers before executing 'viash run'

Build docker containers before executing 'viash run' #107

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
tox-env: [black, flake8]
steps:
- uses: actions/checkout@v4
- name: Using Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tox
run: python -m pip install tox
- name: Run tox env ${{ matrix.tox-env }}
run: tox -e ${{ matrix.tox-env }}
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox
- name: Test
run: |
PYTHON_ENV="${{ matrix.python-version }}"
PYTHON_ENV_NO_DOTS=${PYTHON_ENV//.}
tox run --skip-env '^(?!py'$PYTHON_ENV_NO_DOTS').+'
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: viash-io/viash-actions/setup@v5
- name: Viash ns test
run: |
viash ns test -s tests/integration/ -p docker --memory 1GB