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 736560a commit d798a96
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Go Tests and Benchmarks

on: [push, pull_request]

jobs:
test-and-benchmark:
runs-on: [self-hosted, windows]

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=.

0 comments on commit d798a96

Please sign in to comment.