Skip to content

small fix for crud and EventAction #25

small fix for crud and EventAction

small fix for crud and EventAction #25

Workflow file for this run

name: Test Multiple Go Versions
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19", "1.20", "1.21", "1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build ./...
- name: Test
run: go test ./...