Added quaternion_error function #157
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
name: Code Style | |
on: | |
push: | |
branches: [ "**" ] | |
tags-ignore: [ "**" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
black: | |
name: black | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π Checkout repository" | |
uses: actions/checkout@v2 | |
- name: 'π Initialize Python' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: "π Black Code Formatter" | |
uses: psf/black@stable | |
with: | |
options: --check --diff --color | |
isort: | |
name: isort | |
runs-on: ubuntu-latest | |
steps: | |
- name: "π Checkout repository" | |
uses: actions/checkout@v2 | |
- name: 'π Initialize Python' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
# Workaround for https://github.com/isort/isort-action/issues/70 | |
- run: pip install colorama | |
- name: "π isort" | |
uses: isort/isort-action@master | |
with: | |
configuration: --check --diff --color |