Moves from black and flake8 to ruff #47
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: Python application | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [labeled] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Python Build | |
if: github.event_name == 'workflow_dispatch' || github.event.label.name == 'trigger_pipeline' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ruff | |
- name: Clone Flir extractor | |
run: | | |
git clone https://github.com/ITVRoC/FlirImageExtractor.git --depth 1 | |
sudo apt-get update | |
sudo apt install exiftool python-setuptools | |
- name: Lint with ruff | |
run: | | |
ruff check | |
- run: pip install -e . | |
- name: Test with unittest | |
run: | | |
python -m unittest discover tests |