Skip to content

[Droid] Create .droid.yaml #134

[Droid] Create .droid.yaml

[Droid] Create .droid.yaml #134

Workflow file for this run

name: "Pull Request"
on:
pull_request:
branches:
- main
- develop
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
steps:
- uses: actions/checkout@v3
- name: Install Python 3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install
run: |
pip install -r dev-requirements.txt
python3 -m pip install .
- name: PyTest
run: pytest
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: '--check --diff --skip-string-normalization --exclude="\.tpl\.py"'
version: '22.3.0'