Testing Edge with Hypothesis #109
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: 'Testing Edge with Hypothesis' | |
on: | |
schedule: | |
- cron: '45 22 * * 1-5' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.actor_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint-test: | |
name: 'edge testing' | |
timeout-minutes: 120 | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout opentrons repo' | |
uses: 'actions/checkout@v3' | |
with: | |
ref: 'edge' | |
fetch-depth: 0 | |
- name: 'Setup Python' | |
uses: 'actions/setup-python@v5' | |
with: | |
python-version: '3.10' | |
cache: 'pipenv' | |
cache-dependency-path: 'test-data-generation/Pipfile.lock' | |
- name: 'Install Python deps' | |
uses: './.github/actions/python/setup' | |
with: | |
project: 'test-data-generation' | |
- name: 'Run Hypothesis tests' | |
run: 'make -C test-data-generation test' |