Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc #299

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ _ZIO SBT_ contains multiple sbt plugins that are useful for ZIO projects. It pro
Add the following lines to your `plugin.sbt` file:

```scala
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.0-alpha.19")
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.19")
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.0-alpha.19")
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.0-alpha.20")
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.20")
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.0-alpha.20")
```

Then you can enable them by using the following code in your `build.sbt` file:
Expand Down Expand Up @@ -98,7 +98,7 @@ ZIO SBT CI plugin generates a default GitHub workflow that includes common CI ta
To use ZIO SBT CI plugin, add the following lines to your `plugins.sbt` file:

```scala
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.19")
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.20")

resolvers ++= Resolver.sonatypeOssRepos("public")
```
Expand Down
3 changes: 2 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ test:
continue-on-error: false
strategy:
fail-fast: false
java: ['11', '17', '21']
matrix:
java: ['11', '17', '21']
steps:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
Expand Down