Skip to content

Commit

Permalink
Update go.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisiliya authored Dec 13, 2023
1 parent 8213c4b commit d33814f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,19 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
go-version: [1.18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

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

- name: Install
run: go install -v
run: go install -v ./...

- name: Race Condition Tests
run: go build -race
run: go build -race ./...

0 comments on commit d33814f

Please sign in to comment.