Skip to content

Generate unique nonces for concurrent blockchain txns #1155

Generate unique nonces for concurrent blockchain txns

Generate unique nonces for concurrent blockchain txns #1155

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- "contracts/**"
pull_request:
paths-ignore:
- "contracts/**"
jobs:
test:
name: Test (Node)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
- run: dev/docker/up
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: "nightly-ac81a53d1d5823919ffbadd3c65f081927aa11f2"
- run: dev/contracts/deploy-local
- name: Run Tests
run: |
export GOPATH="${HOME}/go/"
export PATH="${PATH}:${GOPATH}/bin"
go install github.com/jstemmer/go-junit-report/v2@latest
go test -v ./... | go-junit-report -set-exit-code -iocopy -out report.xml
- name: Run Race Tests
run: |
export GOPATH="${HOME}/go/"
export PATH="${PATH}:${GOPATH}/bin"
go test -v ./... -race
- uses: datadog/junit-upload-github-action@v1
with:
api-key: ${{ secrets.DD_API_KEY }}
service: xmtp-node-go
files: report.xml
env: ci