Skip to content

Commit c85ec75

Browse files
authored
🧹 chore: Add go1.24 to CI matrix (#3325)
* Add go1.24 to CI matrix * Create codecov.yml * Lower coverage threshold to 0.5%
1 parent a7bf817 commit c85ec75

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ We **listen** to our users in [issues](https://github.com/gofiber/fiber/issues),
124124

125125
## ⚠️ Limitations
126126

127-
- 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.
127+
- 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.
128128
- 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.
129129

130130
## 👀 Examples
@@ -708,7 +708,7 @@ List of externally hosted middleware modules and maintained by the [Fiber team](
708708
| :------------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------- |
709709
| [contrib](https://github.com/gofiber/contrib) | Third-party middlewares |
710710
| [storage](https://github.com/gofiber/storage) | Premade storage drivers that implement the Storage interface, designed to be used with various Fiber middlewares. |
711-
| [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. |
711+
| [template](https://github.com/gofiber/template) | This package contains 9 template engines that can be used with Fiber. |
712712

713713
## 🕶️ Awesome List
714714

.github/codecov.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# ignore files or directories to be scanned by codecov
2+
ignore:
3+
- "./docs/"
4+
5+
coverage:
6+
status:
7+
project:
8+
default:
9+
threshold: 0.5%

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
unit:
1616
strategy:
1717
matrix:
18-
go-version: [1.23.x]
18+
go-version: [1.23.x, 1.24.x]
1919
platform: [ubuntu-latest, windows-latest, macos-latest, macos-13]
2020
runs-on: ${{ matrix.platform }}
2121
steps:

0 commit comments

Comments
 (0)