diff options
Diffstat (limited to '.github/workflows/build-and-test.yaml')
| -rw-r--r-- | .github/workflows/build-and-test.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 75d4785..3bf905f 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -1,4 +1,4 @@ -name: Build and deploy +name: Build and test env: GO_VERSION: 1.21.6 on: @@ -11,11 +11,11 @@ on: - main jobs: - test: + test-nocache: strategy: matrix: go-version: [ ${{ env.GO_VERSION }} ] - os: [ ubuntu-20.04 ] + os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} name: lint, test, and build @@ -27,7 +27,7 @@ jobs: uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION }} - id: go + cache: false - name: Check for CRLF endings uses: erclu/check-crlf@v1 |
