Skip to content

Refactor trestle_sdk_examples demo #50

Refactor trestle_sdk_examples demo

Refactor trestle_sdk_examples demo #50

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Trestle Demos PR Pipeline
on:
pull_request:
branches:
- develop
- main
jobs:
build:
# concurrency:
# group: ${{ github.head_ref }}-${{ github.workflow }}
# cancel-in-progress: true
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
path: ~/.cache/pip
- os: macos-latest
path: ~/Library/Caches/pip
- os: windows-latest
path: ~\AppData\Local\pip\Cache
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ${{ matrix.path }}
key: ${{ matrix.os }}-${{ matrix.python-version }} }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}
- name: Install dependencies and build tools
run: |
make install
- name: Setup pre-commit
run: |
make pre-commit
- name: Run code formatting (yapf)
run: |
make code-format
- name: Run code linting (flake8)
run: |
make code-lint