v0.1.1 release #37
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: Test | |
on: | |
# # Indicates I want to run this workflow on all branches, PR, and tags | |
push: | |
branches: ["main"] | |
tags: ["v*"] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: cashapp/activate-hermit@v1 | |
with: | |
working-directory: .hermit | |
cache: "true" | |
- name: Run go test | |
run: make test-go | |
- name: E2E test | |
run: make test-e2e |