We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f55f7 commit aca7ce1Copy full SHA for aca7ce1
.github/workflows/test_orca_hls.yml
@@ -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