mirror of
https://github.com/Kyren223/eko.git
synced 2026-07-21 02:51:07 +00:00
Testing if CI runs tests
This commit is contained in:
24
.github/workflows/ci.yml
vendored
Normal file
24
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: Tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: "1.23.2"
|
||||
|
||||
- name: Run tests
|
||||
run: go test ./...
|
||||
@@ -55,6 +55,7 @@ func testPacketEncodingDecoding(t *testing.T, payload Payload) {
|
||||
}
|
||||
|
||||
func TestPacketFramer(t *testing.T) {
|
||||
require.True(t, false, "Failing on purpose")
|
||||
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond*20)
|
||||
defer cancel()
|
||||
framer := NewFramer()
|
||||
|
||||
Reference in New Issue
Block a user