mirror of https://github.com/gofiber/fiber.git
🧹 chore: Add go1.24 to CI matrix (#3325)
* Add go1.24 to CI matrix * Create codecov.yml * Lower coverage threshold to 0.5%pull/3324/head^2
parent
a7bf8171b1
commit
c85ec75fe6
|
@ -124,7 +124,7 @@ We **listen** to our users in [issues](https://github.com/gofiber/fiber/issues),
|
||||||
|
|
||||||
## ⚠️ Limitations
|
## ⚠️ Limitations
|
||||||
|
|
||||||
- Due to Fiber's usage of unsafe, the library may not always be compatible with the latest Go version. Fiber v3 has been tested with Go version 1.23.
|
- Due to Fiber's usage of unsafe, the library may not always be compatible with the latest Go version. Fiber v3 has been tested with Go version 1.23 or higher.
|
||||||
- Fiber is not compatible with net/http interfaces. This means you will not be able to use projects like gqlgen, go-swagger, or any others which are part of the net/http ecosystem.
|
- Fiber is not compatible with net/http interfaces. This means you will not be able to use projects like gqlgen, go-swagger, or any others which are part of the net/http ecosystem.
|
||||||
|
|
||||||
## 👀 Examples
|
## 👀 Examples
|
||||||
|
@ -708,7 +708,7 @@ List of externally hosted middleware modules and maintained by the [Fiber team](
|
||||||
| :------------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------- |
|
| :------------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [contrib](https://github.com/gofiber/contrib) | Third-party middlewares |
|
| [contrib](https://github.com/gofiber/contrib) | Third-party middlewares |
|
||||||
| [storage](https://github.com/gofiber/storage) | Premade storage drivers that implement the Storage interface, designed to be used with various Fiber middlewares. |
|
| [storage](https://github.com/gofiber/storage) | Premade storage drivers that implement the Storage interface, designed to be used with various Fiber middlewares. |
|
||||||
| [template](https://github.com/gofiber/template) | This package contains 9 template engines that can be used with Fiber `v3`. Go version 1.23 or higher is required. |
|
| [template](https://github.com/gofiber/template) | This package contains 9 template engines that can be used with Fiber. |
|
||||||
|
|
||||||
## 🕶️ Awesome List
|
## 🕶️ Awesome List
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
# ignore files or directories to be scanned by codecov
|
||||||
|
ignore:
|
||||||
|
- "./docs/"
|
||||||
|
|
||||||
|
coverage:
|
||||||
|
status:
|
||||||
|
project:
|
||||||
|
default:
|
||||||
|
threshold: 0.5%
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
unit:
|
unit:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.23.x]
|
go-version: [1.23.x, 1.24.x]
|
||||||
platform: [ubuntu-latest, windows-latest, macos-latest, macos-13]
|
platform: [ubuntu-latest, windows-latest, macos-latest, macos-13]
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue