Skip to content

Commit

Permalink
Setting Line Breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
lxzan committed Dec 23, 2023
1 parent 35887c6 commit 53bfcd0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.go]
indent_style = tab
indent_size = 4

[Makefile]
indent_style = tab

[*.{yml,yaml}]
indent_style = space
indent_size = 2
20 changes: 10 additions & 10 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Test
run: go test -v ./...
- name: Bench
run: make bench
- name: Test
run: go test -v ./...

- name: Bench
run: make bench

0 comments on commit 53bfcd0

Please sign in to comment.