Skip to content

Commit

Permalink
Re-enable
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuna committed Apr 29, 2023
1 parent 8e3a934 commit 2fb1be5
Showing 1 changed file with 28 additions and 30 deletions.
58 changes: 28 additions & 30 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,44 +11,44 @@ permissions: # added using https://github.com/step-security/secure-workflows

jobs:

# test_linux:
# name: Linux
# runs-on: ubuntu-latest
# steps:
test_linux:
name: Linux
runs-on: ubuntu-latest
steps:

# - name: Check out code into the Go module directory
# uses: actions/checkout@v3
- name: Check out code into the Go module directory
uses: actions/checkout@v3

# - name: Set up Go 1.20
# uses: actions/setup-go@v4
# with:
# go-version-file: '${{ github.workspace }}/go.mod'
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version-file: '${{ github.workspace }}/go.mod'

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

# - name: Test
# run: go test -v -race -bench=. ./... -benchtime=100ms
- name: Test
run: go test -v -race -bench '.' ./... -benchtime=100ms


# test_macos:
# name: macOS
# runs-on: macos-latest
# steps:
test_macos:
name: macOS
runs-on: macos-latest
steps:

# - name: Check out code into the Go module directory
# uses: actions/checkout@v3
- name: Check out code into the Go module directory
uses: actions/checkout@v3

# - name: Set up Go 1.20
# uses: actions/setup-go@v4
# with:
# go-version-file: '${{ github.workspace }}/go.mod'
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version-file: '${{ github.workspace }}/go.mod'

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

# - name: Test
# run: go test -v -race -bench=. ./... -benchtime=100ms
- name: Test
run: go test -v -race -bench '.' ./... -benchtime=100ms


test_windows:
Expand All @@ -70,5 +70,3 @@ jobs:
- name: Test
run: go test -v -race -bench '.' -benchtime=100ms ./...

- name: Test 2
run: go test -v -race -bench=. -benchtime=100ms .\...

0 comments on commit 2fb1be5

Please sign in to comment.