Skip to content

Commit bc4e00e

Browse files
committed
Refactor workflow to use 'test' job instead of 'tests' job
Signed-off-by: James Bradlee <[email protected]>
1 parent 5057963 commit bc4e00e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/quality-assurance.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Quality Assurance
22
on: [workflow_call, push]
33
jobs:
4-
tests:
4+
test:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout
@@ -18,5 +18,7 @@ jobs:
1818
path=${{ runner.temp }}/gradle
1919
wget --no-verbose -O ${{ runner.temp }}/gradle.zip $distributionUrl
2020
unzip ${{ runner.temp }}/gradle.zip -d $path
21-
ls $path/$(ls -1 $path)/bin
21+
echo $path/$(ls -1 $path)/bin >> $GITHUB_PATH
22+
- name: Tests
23+
run: gradle test
2224

0 commit comments

Comments
 (0)