Skip to content

Commit

Permalink
ci: 💚 fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Jul 6, 2023
1 parent 98f4d61 commit 2dfee2c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ name: Go

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

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.20'
# https://github.com/actions/setup-go/issues/326
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x

- name: Build
run: go build -v ./...
- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
- name: Test
run: go test -v ./...

0 comments on commit 2dfee2c

Please sign in to comment.