Change the path to save temperature bound json file #30
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.10" | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 | |
- name: Clone GuillaumeFalourd/poc-github-actions PUBLIC repository | |
uses: GuillaumeFalourd/[email protected] | |
with: | |
depth: 1 | |
branch: "master" | |
owner: "ITVRoC" | |
repository: "FlirImageExtractor" | |
- name: Lint with flake8 | |
run: | | |
flake8 . --count --show-source --statistics | |
- run: pip install -e . | |
- name: Test with unittest | |
run: | | |
python -m unittest discover tests |