Skip to content

Commit aca7ce1

Browse files
authored
Create test_orca_hls.yml
1 parent 06f55f7 commit aca7ce1

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/test_orca_hls.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Test Ambient Sound Processing
2+
3+
on:
4+
# To run manually
5+
workflow_dispatch:
6+
# push:
7+
# branches:
8+
# - main
9+
# - caching
10+
#schedule:
11+
# - cron: '51 21 8 7 *'
12+
13+
jobs:
14+
process:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- uses: actions/setup-python@v5
20+
with:
21+
python-version: '3.9.18'
22+
# cache: 'pip'
23+
# cache-dependency-path: ambient_sound_analysis/requirements_noise.txt
24+
25+
- name: Install Python dependencies
26+
run: |
27+
pip install -r ambient_sound_analysis/requirements_noise.txt
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+

0 commit comments

Comments
 (0)