Update python_env.yml #1
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: Ambient Sound Processing | |
on: | |
# To run manually | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- caching | |
# schedule: | |
# - cron: '9 * * * *' | |
jobs: | |
process: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9.18' | |
cache: 'pip' | |
cache-dependency-path: ambient_sound_analysis/requirements_noise.txt | |
- name: Install Python dependencies | |
run: | | |
pip install -r ambient_sound_analysis/requirements_noise.txt | |
- name: Install ffmpeg | |
run: | | |
sudo apt-get update | |
sudo apt-get install ffmpeg | |
#- uses: awalsh128/cache-apt-pkgs-action@latest | |
# with: | |
# packages: ffmpeg | |
- name: Create plots | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
python ambient_sound_analysis/noise_processing.py | |
- name: Upload to GitHub repo | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Commit to Github | |
file_pattern: 'ambient_sound_analysis/img/*.png' | |
# - name: Upload as artifact | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: ambient_sound_plots | |
# path: ambient_sound_analysis/img/*.png | |
# - name: Upload to Google Drive | |
# uses: AnimMouse/setup-rclone@v1 | |
# with: | |
# rclone_config: ${{secrets.RCLONE_CONFIG}} | |
# | |
# - run: | | |
# rclone copy ambient_sound_analysis/img/broadband.png mydrive:rclone_uploads/ |