Merge pull request #105 from multiversx/revert-dockerfile-changes #338
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ main, rc/*, feat/* ] | |
pull_request: | |
branches: [ main, rc/*, feat/* ] | |
jobs: | |
test: | |
name: Unit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20.7 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.20.7 | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Unit tests | |
run: make test |