Adjust timestamps to reflect actual detection time instead of audio file start time #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: Python CI | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
jobs: | |
python-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.9.x' | |
cache: 'pip' | |
architecture: 'x64' | |
- name: Install flake8 | |
run: pip install flake8 | |
- name: Run Flake8 Lint | |
run: | | |
flake8 |