Skip to content

Merge pull request #188 from multiversx/updated-aggregator-package #691

Merge pull request #188 from multiversx/updated-aggregator-package

Merge pull request #188 from multiversx/updated-aggregator-package #691

Workflow file for this run

name: Tests
on:
push:
branches: [ main, feat/*, rc/* ]
pull_request:
branches: [ main, feat/*, rc/* ]
jobs:
test:
name: Unit
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17.6
uses: actions/setup-go@v3
with:
go-version: 1.20.7
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Unit tests
run: make test