Skip to content

SC executor module refactor - part 1 #1292

SC executor module refactor - part 1

SC executor module refactor - part 1 #1292

Workflow file for this run

name: Tests
on:
push:
branches: [ main, feat/* ]
pull_request:
branches: [ main, feat/* ]
jobs:
test:
name: Unit & Integration
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
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