Skip to content

Add remote testing on given ref #45

Add remote testing on given ref

Add remote testing on given ref #45

Workflow file for this run

name: CI
on:
workflow_dispatch:
workflow_call:
push:
branches: ["main", "develop"]
paths-ignore: ["README.md"]
pull_request:
paths-ignore: ["README.md"]
concurrency:
# New commit on branch cancels running workflows of the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
stack-name: [local]
os: [windows-latest, ubuntu-latest, macos-latest]
env:
ZENML_DEBUG: true
ZENML_ANALYTICS_OPT_IN: false
ZENML_LOGGING_VERBOSITY: INFO
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Run tests
uses: ./.github/actions/e2e_template_test
with:
stack-name: ${{ matrix.stack-name }}