Skip to content

Commit 87ba64d

Browse files
committed
ci: test check-version action
1 parent 770410c commit 87ba64d

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,27 @@ on:
1515

1616
jobs:
1717

18+
version-test:
19+
name: testing versino action
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: checkout
23+
uses: actions/checkout@v6
24+
25+
- name: get version
26+
id: get-version
27+
uses: ./.github/actions/check-version
28+
with:
29+
version-file: 'gradle/libs.versions.toml'
30+
version-path: 'versions.processor'
31+
32+
- name: echo
33+
shell: bash
34+
run: echo BUILD_VERSION_X "$BUILD_VERSION_X"
35+
env:
36+
BUILD_VERSION_X: ${{ steps.get-version.outputs.build-version }}
37+
38+
1839
version:
1940
name: check version
2041
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)