diff --git a/.github/workflows/go-ci.yml b/.github/workflows/go-ci.yml index 3b460bf..4d23134 100644 --- a/.github/workflows/go-ci.yml +++ b/.github/workflows/go-ci.yml @@ -11,11 +11,12 @@ on: jobs: macos: - runs-on: macos-latest strategy: matrix: + os: [macos-latest, macos-12] go: ['1.14', '1.15'] - name: macOS Go${{ matrix.go }} + runs-on: ${{ matrix.os }} + name: macOS Go${{ matrix.go }} on ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v2 diff --git a/go.mod b/go.mod index 2c7a2a1..48976cd 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/otiai10/gosseract/v2 -go 1.14 +go 1.18 require github.com/otiai10/mint v1.3.3