Skip to content

Commit

Permalink
Github Actions fixed
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Bogdanovic <[email protected]>
  • Loading branch information
CerealKiller97 committed Jan 12, 2024
1 parent 5fa9d97 commit 9871d61
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.19]
go: [1.21]
runs-on: ${{ matrix.os }}
container: golang:${{ matrix.go }}-bullseye
steps:
Expand Down
29 changes: 0 additions & 29 deletions Makefile

This file was deleted.

6 changes: 6 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@ tasks:
cmds:
- rm -f go.sum
- go mod tidy

# ifeq ($(RACE), 1)
# @CC=gcc CXX=g++ go test ./... -race -covermode=atomic -coverprofile=coverage.txt -timeout 5m
# else
# @CC=gcc CXX=g++ go test ./... -covermode=atomic -coverprofile=coverage.txt -timeout 1m
# endif
10 changes: 10 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ package main

import "fmt"

type Action struct {
Key string
Value any
Type string
}

type RedisMock struct {
data []Action
}

func main() {
fmt.Println("Start Here...")
}

0 comments on commit 9871d61

Please sign in to comment.