Skip to content

Commit

Permalink
style: formatted 4 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
niklastreml committed Oct 19, 2022
1 parent 66adcd4 commit 609576c
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
name: Go

on:
push:
branches: ["main"]
pull_request:
branches: [ "main" ]
push:
branches: ['main']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

build:
runs-on: ubuntu-latest
steps:
- 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: Build
run: go build -v ./...

- name: Build
run: go build -v ./...
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...

- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...

- name: Codecov
uses: codecov/codecov-action@v3
- name: Codecov
uses: codecov/codecov-action@v3

0 comments on commit 609576c

Please sign in to comment.