File tree Expand file tree Collapse file tree 5 files changed +23
-18
lines changed Expand file tree Collapse file tree 5 files changed +23
-18
lines changed Original file line number Diff line number Diff line change 7
7
build :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
+ - name : Checkout
11
+ uses : actions/checkout@v3
12
+
13
+ - name : Setup JDK
14
+ uses : actions/setup-java@v3
15
+ with :
16
+ distribution : ' temurin'
17
+ java-version : ' 21'
18
+
19
+ - name : Setup OS
20
+ run : |
21
+ sudo apt-get update && sudo apt-get install -y gnupg2 expect
22
+
10
23
- name : Test
11
- uses : ./.github/ test
24
+ run : ./gradlew test
12
25
13
26
- name : Publish
14
27
env :
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ I'm a fan of the Testing Library because it encourages "testing as a user":
10
10
> The more your tests resemble the way your software is used,
11
11
> the more confidence they can give you.
12
12
13
-
14
13
Pick
15
14
the [ library's latest version at Maven Central] ( https://search.maven.org/artifact/com.luissoares/selenium-testing-library ) .
16
15
Then, copy the declaration for your build tool. E.g.:
@@ -20,7 +19,6 @@ implementation("com.luissoares:selenium-testing-library:3.7.7")
20
19
```
21
20
22
21
---
23
-
24
22
These are just a few examples. Check [ the tests] ( /lib/src/test/kotlin/seleniumtestinglib )
25
23
that [ illustrate] ( https://medium.com/codex/towards-self-documenting-code-371364bdccbb )
26
24
all the usages.
@@ -85,5 +83,4 @@ val displayedValue = element.displayValue
85
83
```
86
84
87
85
---
88
-
89
86
ℹ️ _ [ Read more] ( https://medium.com/codex/the-testing-library-meets-selenium-5f74cc712114 ) ._
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ version=" $1 "
4
+ # sed -i "s/version = .*/version = ""$version""/g" lib/build.gradle.kts
5
+ # sed -i "s/com\.luissoares:selenium-testing-library:[0-9]\+\.[0-9]\+\.[0-9]\+/com.luissoares:selenium-testing-library:$version/g" README.md
6
+ git tag -l | xargs git tag -d
7
+ git push --delete origin " v$version "
8
+ git tag " v$version " -m " Tag release"
9
+ git push origin " v$version "
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments