Skip to content

Commit

Permalink
run ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Mar 9, 2024
1 parent 82ed253 commit 9c41e56
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test
on:
pull_request:
merge_group:
push:
paths:
- "**.go"
branches:
- main
- release/**

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- uses: actions/checkout@v4

- name: Run Go Tests
run: |
go test -v -race ./... -tags bls12381

0 comments on commit 9c41e56

Please sign in to comment.