Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrm committed Feb 27, 2024
1 parent d11c66b commit f218561
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,24 @@ name: Go Tests and Benchmarks
on: [push, pull_request]

jobs:
test-and-benchmark:
test-and-benchmark-mac:
runs-on: [self-hosted, macOS, ARM64]

steps:
- name: Set up Git repository
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.22' # Use the version of Go in your project

- name: Run tests
run: go test ./...

- name: Run benchmarks
run: go test -bench=.
test-and-benchmark-win:
runs-on: [self-hosted, Windows, X64]

steps:
Expand Down

0 comments on commit f218561

Please sign in to comment.