SM-1339: Create new service in DIMO Node responsible for CH and S3 insert #5
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: | |
pull_request: | |
branches: ["**"] | |
push: | |
branches: | |
- main | |
jobs: | |
rules-test: | |
runs-on: [ self-hosted, linux ] | |
steps: | |
# using go to get arch and os | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# we need to install promtool to run the tests | |
- name: Install promtool | |
run: make tools | |
- name: Run tests | |
run: make test |