Skip to content

Commit

Permalink
Try to fix check on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaq committed Dec 16, 2024
1 parent 9eba995 commit 9ec34d1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ jobs:
os: [ubuntu, macos, windows]
runs-on: ${{ matrix.os }}-latest
steps:
# autocrlf is problematic for check-fmt-go.
- name: Turn off autocrlf
if: matrix.os == 'windows'
run: git config --global core.autocrlf false
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
Expand Down

0 comments on commit 9ec34d1

Please sign in to comment.