Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Jul 10, 2024
1 parent 1c0c727 commit 68d5f26
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
types: [ created ]
pull_request:
branches:
- main
- 0.x-9.x

# jobs
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ name: Codacy Security Scan
on:
push:
branches:
- main
- 0.x-9.x
pull_request:
# The branches below must be a subset of the branches above
branches:
- main
- 0.x-9.x
schedule:
- cron: '15 19 * * 1'
Expand Down
6 changes: 3 additions & 3 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pull_request_rules:
- check-success=codecov/project
- check-success=build (Scala2_13)
- check-success=build (Scala3_3)
- base=main
- base=0.x-9.x
- label!=work-in-progress
actions:
merge:
Expand All @@ -16,7 +16,7 @@ pull_request_rules:
- author=scala-steward-geirolz[bot]
- check-success=build (Scala2_13)
- check-success=build (Scala3_3)
- base=main
- base=0.x-9.x
actions:
merge:
method: rebase
Expand All @@ -25,7 +25,7 @@ pull_request_rules:
- author=dependabot[bot]
- check-success=build (Scala2_13)
- check-success=build (Scala3_3)
- base=main
- base=0.x-9.x
actions:
merge:
method: rebase
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://github.com/geirolz/fly4s/actions/workflows/cicd.yml/badge.svg)](https://github.com/geirolz/fly4s/actions)
[![codecov](https://img.shields.io/codecov/c/github/geirolz/fly4s)](https://codecov.io/gh/geirolz/fly4s)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/db3274b55e0c4031803afb45f58d4413)](https://www.codacy.com/manual/david.geirola/fly4s?utm_source=github.com&utm_medium=referral&utm_content=geirolz/fly4s&utm_campaign=Badge_Grade)
[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.github.geirolz/fly4s-core_2.13?server=https%3A%2F%2Foss.sonatype.org)](https://mvnrepository.com/artifact/com.github.geirolz/fly4s-core)
[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.github.geirolz/fly4s_2.13?server=https%3A%2F%2Foss.sonatype.org)](https://mvnrepository.com/artifact/com.github.geirolz/fly4s)
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
[![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/geirolz/fly4s&style=flat)](https://mergify.io)
[![GitHub license](https://img.shields.io/github/license/geirolz/fly4s)](https://github.com/geirolz/fly4s/blob/main/LICENSE)
Expand Down Expand Up @@ -48,7 +48,7 @@ So, add the dependency in your `build.sbt` file.
Fly4s depends on Flyway, so we'll have access to Flyway as well

```sbt
libraryDependencies += "com.github.geirolz" %% "fly4s-core" % "0.0.20"
libraryDependencies += "com.github.geirolz" %% "fly4s" % "0.0.20"
```

### Migrations files
Expand Down Expand Up @@ -139,7 +139,7 @@ val fly4sRes: Resource[IO, Fly4s[IO]] = Fly4s.make[IO](
)
)
// fly4sRes: Resource[IO, Fly4s[IO]] = Allocate(
// resource = cats.effect.kernel.Resource$$$Lambda$13201/0x00000008034be2e8@5c96bc35
// resource = cats.effect.kernel.Resource$$$Lambda/0x0000000704122cc0@7c888df7
// )
```

Expand Down

0 comments on commit 68d5f26

Please sign in to comment.