diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f15222..09658ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,26 +7,5 @@ on: branches: - main jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: 1.x - cache: true - - uses: golangci/golangci-lint-action@v3 - with: - version: latest - unit: - runs-on: ubuntu-latest - strategy: - matrix: - go-version: [1.18.x, 1.19.x] - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: ${{ matrix.go-version }} - cache: true - - run: make test + go: + uses: bsm/misc/.github/workflows/test-go.yml@main diff --git a/go.mod b/go.mod index 9dcd397..0bc8fff 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/bsm/minisql -go 1.14 +go 1.24