mirror of https://github.com/coqui-ai/TTS.git
Update data_tests.yml
This commit is contained in:
parent
7149ba10bc
commit
d67cc4d09a
|
@ -7,10 +7,22 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
measure-energy:
|
measure-energy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Run power usage check
|
name: A job to measure energy
|
||||||
steps:
|
steps:
|
||||||
- run: sar -u 1 240 -o test.txt
|
- name: Hello world action step
|
||||||
- run: cat test.txt
|
id: hello
|
||||||
|
uses: koenhagen/measure-energy-action@v1.0
|
||||||
|
with:
|
||||||
|
what-to-test: sleep 60
|
||||||
|
# Use the output from the `hello` step
|
||||||
|
- name: Get the output time
|
||||||
|
run: echo "The time was ${{ steps.hello.outputs.time }}"
|
||||||
|
# measure-energy:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# name: Run power usage check
|
||||||
|
# steps:
|
||||||
|
# - run: sar -u 1 240 -o test.txt
|
||||||
|
# - run: cat test.txt
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Reference in New Issue