chore: internal release 0.14.0 #96
Workflow file for this run
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
# This workflow runs lint on pull requests that touch anything in the app-testing directory | |
name: 'app-testing lint' | |
on: | |
pull_request: | |
paths: | |
- 'app-testing/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
name: 'app-testing lint' | |
timeout-minutes: 5 | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- name: Checkout opentrons repo | |
uses: 'actions/checkout@v3' | |
- name: Setup Python | |
uses: 'actions/setup-python@v4' | |
with: | |
python-version: '3.11' | |
cache: 'pipenv' | |
cache-dependency-path: app-testing/Pipfile.lock | |
- name: Install Pipenv | |
run: pip install -U pipenv | |
- name: Pipenv Install | |
id: install | |
working-directory: ./app-testing | |
run: make setup | |
- name: black-check | |
if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' | |
working-directory: ./app-testing | |
run: make black-check | |
- name: ruff | |
if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' | |
working-directory: ./app-testing | |
run: make ruff-check | |
- name: mypy | |
if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' | |
working-directory: ./app-testing | |
run: make mypy |