Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
rotemtam committed Jul 27, 2023
1 parent 7a69100 commit 55ff16f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: 1.20
- uses: actions/cache@v3
Expand All @@ -39,7 +39,9 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Run tests
run: go test -mod=mod -race ./...
run: |
go get -u ./...
go test -race ./...
integration-tests:
runs-on: ubuntu-latest
permissions:
Expand Down
7 changes: 7 additions & 0 deletions main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "testing"

func Test(t *testing.T) {
t.Skip("skipping")
}

0 comments on commit 55ff16f

Please sign in to comment.